Nerdtree and theme

This commit is contained in:
rendo 2026-03-16 10:33:47 +05:00
commit f3adbe063b
3 changed files with 19 additions and 5 deletions

View file

@ -81,6 +81,10 @@ function config_cmp()
end
function theme()
vim.cmd('colorscheme tokyonight')
end
return {
'L3MON4D3/LuaSnip',
'saadparwaiz1/cmp_luasnip',
@ -93,5 +97,13 @@ return {
'hrsh7th/nvim-cmp',
config = config_cmp
},
'sakhnik/nvim-gdb'
'sakhnik/nvim-gdb',
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
config = theme,
opts = {},
},
'preservim/nerdtree'
}