diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-03-03 21:02:11 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-03-03 21:02:11 +0000 |
commit | 54e4e18a13375cbb69ec475aafab3946fbc7a613 (patch) | |
tree | 71a86112db5c20aafb419323b0c9ff83fbbd8894 /.config/nvim/lua/plugins.lua | |
parent | c10fa602f7c30e03c0bacb9c5cf116d808e86f6d (diff) | |
download | dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar.gz dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar.bz2 dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar.lz dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar.xz dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.tar.zst dotfiles-54e4e18a13375cbb69ec475aafab3946fbc7a613.zip |
Enable null-ls prettier formatting and disable ufo.nvim
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; |