diff --git a/config/nvim/init.lua b/config/nvim/init.lua index a2a7deb..d307560 100644 --- a/config/nvim/init.lua +++ b/config/nvim/init.lua @@ -228,7 +228,23 @@ vim.keymap.set('n', 'sd', require('telescope.builtin').diagnostics, { de -- See `:help nvim-treesitter` require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'php', 'python', 'rust', 'typescript', 'help' }, + ensure_installed = { + 'bash', + 'c', 'comment', 'cpp', + 'diff', 'dockerfile', + 'gitattributes', 'gitignore', 'go', + 'html', 'http', + 'javascript', 'jq', 'jsdoc', 'json', + 'lua', + 'markdown', + 'php', 'phpdoc', 'python', + 'regex', 'rust', + 'scss', 'sql', + 'typescript', + 'vim', 'vue', + 'yaml', + 'help', + }, highlight = { enable = true }, indent = { enable = true, disable = { 'python' } }, diff --git a/config/nvim/lua/custom/plugins.lua b/config/nvim/lua/custom/plugins.lua index bf62b46..c00ca1d 100644 --- a/config/nvim/lua/custom/plugins.lua +++ b/config/nvim/lua/custom/plugins.lua @@ -47,6 +47,11 @@ return function(use) callback = function() require("lint").try_lint() end, }) + -- nvim orgmode, to get me use nvim even more. + use ({ "nvim-orgmode/orgmode", + config = function() require("orgmode").setup({}) end, + }) + -- Remaps for the refactoring operations currently offered by the plugin local map = vim.api.nvim_set_keymap