This commit is contained in:
aliaksandrkotau 2023-12-13 12:54:13 +01:00
parent 542c7cd3fb
commit f9a4cf6c25
2 changed files with 16 additions and 2 deletions

View File

@ -667,7 +667,6 @@ vim.cmd [[
]]
vim.api.nvim_set_keymap('n', '<leader>m', ':call quickui#menu#open()<CR>', { noremap = true })
vim.g.quickui_color_scheme = 'onedark'
vim.cmd([[ let g:quickui_color_scheme = 'papercol_dark' ]])
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et

View File

@ -0,0 +1,15 @@
-- 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,
}