File tree Expand file tree Collapse file tree 2 files changed +22
-3
lines changed
Expand file tree Collapse file tree 2 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -849,14 +849,15 @@ require('lazy').setup({
849849 -- change the command in the config to whatever the name of that colorscheme is.
850850 --
851851 -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
852- ' ellisonleao/gruvbox.nvim ' ,
852+ ' rose-pine/neovim ' ,
853853 priority = 1000 , -- Make sure to load this before all the other start plugins.
854- opts = { transparent_mode = false },
854+ -- opts = { variant = 'auto', dark_variant = 'main' },
855+
855856 init = function ()
856857 -- Load the colorscheme here.
857858 -- Like many other themes, this one has different styles, and you could load
858859 -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
859- vim .cmd .colorscheme ' gruvbox '
860+ vim .cmd .colorscheme ' rose-pine '
860861
861862 -- You can configure highlights by doing something like:
862863 vim .cmd .hi ' Comment gui=none'
Original file line number Diff line number Diff line change @@ -16,4 +16,22 @@ return {
1616 }
1717 end ,
1818 },
19+ {
20+ ' christoomey/vim-tmux-navigator' ,
21+ cmd = {
22+ ' TmuxNavigateLeft' ,
23+ ' TmuxNavigateDown' ,
24+ ' TmuxNavigateUp' ,
25+ ' TmuxNavigateRight' ,
26+ ' TmuxNavigatePrevious' ,
27+ ' TmuxNavigatorProcessList' ,
28+ },
29+ keys = {
30+ { ' <c-h>' , ' <cmd><C-U>TmuxNavigateLeft<cr>' },
31+ { ' <c-j>' , ' <cmd><C-U>TmuxNavigateDown<cr>' },
32+ { ' <c-k>' , ' <cmd><C-U>TmuxNavigateUp<cr>' },
33+ { ' <c-l>' , ' <cmd><C-U>TmuxNavigateRight<cr>' },
34+ { ' <c-\\ >' , ' <cmd><C-U>TmuxNavigatePrevious<cr>' },
35+ },
36+ },
1937}
You can’t perform that action at this time.
0 commit comments