TODO List:
- Bind caps lock to escape
-- Navigate panes (from both nvim/tmux)
{ "<c-h>", "<c-j>", "<c-k>", "<c-l>" }
-- Tmux bindings
{
"<c-A>c", -- create window
"<c-A>n", "<c-A>p", -- next and previous windows
"<c-A>&", -- kill current window
}
- Repo:
tpope/vim-surround
- Repo:
tpope/vim-commentary
- Repo:
markdownpreview
- Repo:
vimtex
{
-- Vim-surround
"ysiw]", -- word -> [word]
"ysiw[", -- word -> [ word ]
"yss[", -- line -> [line]
"yss]", -- line -> [ line ]
"S[", -- selection -> [selection]
"S]", -- selection -> [ selection ]
"ds]", -- [word] -> word
"cs[", -- [word] -> "word"
"cst]", -- <q>word</q> -> [word]
-- Vim-commentary
"gcc", -- comment line
"gcap", -- comment out a paragraph
"gc", -- comment selected lines
}
- Repo:
nvimtree