Navigator.nvim

This commit is contained in:
♥ Minnie ♥ 2023-04-16 21:51:37 +08:00
parent 97191e8561
commit 0651223f70
2 changed files with 7 additions and 0 deletions

View file

@ -31,6 +31,11 @@ local map = vim.api.nvim_set_keymap
map('n', '<leader>t', ':NvimTreeToggle<cr>', opts) map('n', '<leader>t', ':NvimTreeToggle<cr>', opts)
map('n', '<A-h>', ':NavigatorLeft<cr>', opts)
map('n', '<A-l>', ':NavigatorRight<cr>', opts)
map('n', '<A-k>', ':NavigatorUp<cr>', opts)
map('n', '<A-j>', ':NavigatorDown<cr>', opts)
-- }}} -- }}}
-- --
@ -67,6 +72,7 @@ vim.cmd [[colorscheme gruvbox-material]]
require('nvim-tree').setup() require('nvim-tree').setup()
require('Comment').setup() require('Comment').setup()
require('gitsigns').setup() require('gitsigns').setup()
require('Navigator').setup()
-- user -- user
require('user.lspconfig') require('user.lspconfig')

View file

@ -24,6 +24,7 @@
# Quality of Life Enhancements # Quality of Life Enhancements
comment-nvim # Smart and powerful commenting comment-nvim # Smart and powerful commenting
Navigator-nvim # Navigate between neovim and multiplexers
# User Interface # User Interface
gruvbox-material # Theme gruvbox-material # Theme