diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-04-09 16:54:23 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-04-09 16:57:08 +0000 |
commit | c2235052484d928ae6770471bbb2d3407ad00ac5 (patch) | |
tree | a9fac10fcec64bf1969c3f1ef106c3022c1e021e /.config/nvim/lua/plugins.lua | |
parent | 8b59311a6803f9e5600918605e07f7878cc334cc (diff) | |
download | dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar.gz dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar.bz2 dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar.lz dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar.xz dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.tar.zst dotfiles-c2235052484d928ae6770471bbb2d3407ad00ac5.zip |
nvim: Maintanance updates
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 3faa751..76fb571 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -70,16 +70,20 @@ local PKGS = { { url = "https://github.com/ray-x/lsp_signature.nvim.git" }; { url = "https://github.com/Hoffs/omnisharp-extended-lsp.nvim.git" }; { url = "https://github.com/lewis6991/gitsigns.nvim.git" }; + { url = "https://github.com/jacobsimpson/nvim-mercurial.git" }; + -- Deprecated -- { url = "https://github.com/jose-elias-alvarez/null-ls.nvim.git" }; { url = "https://github.com/nvimtools/none-ls.nvim.git" }; { url = "https://github.com/mfussenegger/nvim-dap.git" }; { url = "https://github.com/rcarriga/nvim-dap-ui.git" }; + { url = "https://github.com/nvim-neotest/nvim-nio.git" }; { url = "https://github.com/antoinemadec/FixCursorHold.nvim.git" }; { url = "https://github.com/nvim-neotest/neotest.git" }; { url = "https://github.com/nvim-neotest/nvim-nio.git" }; { url = "https://github.com/Issafalcon/neotest-dotnet.git" }; { url = "https://github.com/VidocqH/lsp-lens.nvim.git" }; + { url = "https://github.com/simrat39/rust-tools.nvim.git" }; -- Dev container { url = "https://codeberg.org/esensar/nvim-dev-container.git" }; @@ -169,11 +173,11 @@ local function init_plugins() vim.g.minimap_highlight_range = 1 vim.g.minimap_highlight_search = 1 - -- ufo.setup({ - -- provider_selector = function(bufnr, filetype, buftype) - -- return { "treesitter"; "indent" } - -- end; - -- }); + ufo.setup({ + provider_selector = function(bufnr, filetype, buftype) + return { "treesitter"; "indent" } + end; + }); catppuccin.setup({ transparent_background = true; @@ -195,7 +199,6 @@ local function init_plugins() devcontainer.setup({ always_mount = {} }) whichkey.setup({}) - orgmode.setup_ts_grammar() nvim_treesitter_config.setup({ ensure_installed = { "javascript"; |