updated some plugins

This commit is contained in:
Code Lich 2025-03-11 19:53:06 +07:00
parent 34e7d29aa7
commit 7ff113de40
4 changed files with 55 additions and 2 deletions

View File

@ -91,7 +91,7 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
-- [[ Setting options ]]
-- See `:help vim.opt`
@ -992,7 +992,7 @@ require('lazy').setup({
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!

View File

@ -0,0 +1,9 @@
return {
{
'xeluxee/competitest.nvim',
dependencies = 'MunifTanjim/nui.nvim',
config = function()
require('competitest').setup()
end,
},
}

View File

@ -0,0 +1,32 @@
return {
'nvim-neo-tree/neo-tree.nvim',
branch = 'v3.x',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons',
'MunifTanjim/nui.nvim',
},
config = function()
require('neo-tree').setup {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = false,
},
follow_current_file = true, -- Highlight current file
use_libuv_file_watcher = true, -- Auto-update tree when files change
},
window = {
mappings = {
['l'] = 'open', -- Set 'l' to open files
['h'] = 'close_node', -- Collapse folders with 'h'
['<CR>'] = 'open',
},
},
}
-- Set keymap to open Neo-tree with <Leader> + e
vim.keymap.set('n', '<leader>e', ':Neotree toggle<CR>', { noremap = true, silent = true })
end,
}

View File

@ -0,0 +1,12 @@
return {
'folke/tokyonight.nvim',
priority = 1000,
config = function()
require('tokyonight').setup {
style = 'moon', -- Options: night, storm, moon, day
transparent = false, -- Enable transparent background
terminal_colors = true,
}
vim.cmd [[colorscheme tokyonight]]
end,
}