diff --git a/lazyvim.json b/lazyvim.json index 1c07d95..a14ccc5 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -3,7 +3,6 @@ "lazyvim.plugins.extras.formatting.prettier", "lazyvim.plugins.extras.lang.go", "lazyvim.plugins.extras.lang.java", - "lazyvim.plugins.extras.lang.markdown", "lazyvim.plugins.extras.lang.python", "lazyvim.plugins.extras.lang.rust", "lazyvim.plugins.extras.lang.tailwind", diff --git a/lua/plugins/lombok.lua b/lua/plugins/lombok.lua deleted file mode 100644 index 5c28147..0000000 --- a/lua/plugins/lombok.lua +++ /dev/null @@ -1,15 +0,0 @@ -return { - { - "mfussenegger/nvim-jdtls", - ---@type lspconfig.options.jdtls - ---@diagnostic disable-next-line: missing-fields - opts = { - jdtls = function(opts) - local install_path = require("mason-registry").get_package("jdtls"):get_install_path() - local jvmArg = "-javaagent:" .. install_path .. "/lombok.jar" - table.insert(opts.cmd, "--jvm-arg=" .. jvmArg) - return opts - end, - }, - }, -} diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua deleted file mode 100644 index b7b3dd8..0000000 --- a/lua/plugins/orgmode.lua +++ /dev/null @@ -1,27 +0,0 @@ -return { - { - "nvim-orgmode/orgmode", - dependencies = { - { "nvim-treesitter/nvim-treesitter" }, - }, - event = "VeryLazy", - config = function() - require("orgmode").setup_ts_grammar() - require("orgmode").setup({ - org_agenda_files = "~/orgfiles/**/*", - org_default_notes_file = "~/orgfiles/refile.org", - }) - end, - }, - { - "nvim-treesitter/nvim-treesitter", - opts = { - ensure_installed = { - "org", - }, - }, - dependencies = { - "orgmode", - }, - }, -}