diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 8506e15..4a66b42 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -72,6 +72,7 @@ local PKGS = { { url = "https://github.com/lewis6991/gitsigns.nvim.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/antoinemadec/FixCursorHold.nvim.git" }; @@ -165,11 +166,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; |