remove neotree from filetree since it's included now

This commit is contained in:
Gilad Sher 2024-09-07 12:36:25 -04:00
parent f61c78a48f
commit 41b2a96064
No known key found for this signature in database
2 changed files with 11 additions and 22 deletions

View File

@ -741,6 +741,10 @@ require('lazy').setup({
require('mason-lspconfig').setup {
handlers = {
function(server_name)
-- temporary solution based on https://github.com/neovim/nvim-lspconfig/pull/3232#issuecomment-2331025714 until things work correctly
if server_name == 'tsserver' then
server_name = 'ts_ls'
end
local server = servers[server_name] or {}
-- This handles overriding only values explicitly passed
-- by the server configuration above. Useful when disabling

View File

@ -1,15 +0,0 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
require('neo-tree').setup {}
end,
}