41 lines
1019 B
Lua
41 lines
1019 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
{
|
|
'christoomey/vim-tmux-navigator',
|
|
cmd = {
|
|
'TmuxNavigateLeft',
|
|
'TmuxNavigateDown',
|
|
'TmuxNavigateUp',
|
|
'TmuxNavigateRight',
|
|
'TmuxNavigatePrevious',
|
|
},
|
|
keys = {
|
|
{ '<c-h>', '<cmd><C-U>TmuxNavigateLeft<cr>' },
|
|
{ '<c-j>', '<cmd><C-U>TmuxNavigateDown<cr>' },
|
|
{ '<c-k>', '<cmd><C-U>TmuxNavigateUp<cr>' },
|
|
{ '<c-l>', '<cmd><C-U>TmuxNavigateRight<cr>' },
|
|
{ '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' },
|
|
},
|
|
},
|
|
{
|
|
'nxstynate/oneDarkPro.nvim',
|
|
priority = 1000,
|
|
opts = {
|
|
palette_overrides = {
|
|
dark0 = '#282c34',
|
|
},
|
|
},
|
|
init = function()
|
|
vim.cmd.colorscheme 'oneDarkPro'
|
|
end,
|
|
},
|
|
{ 'NvChad/nvim-colorizer.lua', opts = {
|
|
user_default_options = {
|
|
css = true,
|
|
},
|
|
} },
|
|
}
|