16 lines
478 B
Lua
16 lines
478 B
Lua
return {
|
|
-- Detect tabstop and shiftwidth automatically
|
|
'tpope/vim-sleuth',
|
|
-- tmux & split window navigation
|
|
'christoomey/vim-tmux-navigator',
|
|
-- maximizes and restores current window
|
|
'szw/vim-maximizer',
|
|
-- surrounds word and add/removes/replaces characters
|
|
'tpope/vim-surround',
|
|
-- Useful plugin to show you pending keybinds.
|
|
{ 'folke/which-key.nvim', opts = {} },
|
|
-- "gc" to comment visual regions/lines
|
|
{ 'numToStr/Comment.nvim', opts = {} },
|
|
}
|
|
|