working
This commit is contained in:
parent
5bdde24dfb
commit
dd1d1bb6e9
49 changed files with 2444 additions and 1322 deletions
58
lua/plugins/misc.lua
Normal file
58
lua/plugins/misc.lua
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
-- Standalone plugins with less than 10 lines of config go here
|
||||
return {
|
||||
{
|
||||
-- autoclose tags
|
||||
'windwp/nvim-ts-autotag',
|
||||
},
|
||||
{
|
||||
-- detect tabstop and shiftwidth automatically
|
||||
'tpope/vim-sleuth',
|
||||
},
|
||||
{
|
||||
-- Powerful Git integration for Vim
|
||||
'tpope/vim-fugitive',
|
||||
},
|
||||
{
|
||||
-- GitHub integration for vim-fugitive
|
||||
'tpope/vim-rhubarb',
|
||||
},
|
||||
{
|
||||
-- Hints keybinds
|
||||
'folke/which-key.nvim',
|
||||
opts = {
|
||||
-- win = {
|
||||
-- border = {
|
||||
-- { '┌', 'FloatBorder' },
|
||||
-- { '─', 'FloatBorder' },
|
||||
-- { '┐', 'FloatBorder' },
|
||||
-- { '│', 'FloatBorder' },
|
||||
-- { '┘', 'FloatBorder' },
|
||||
-- { '─', 'FloatBorder' },
|
||||
-- { '└', 'FloatBorder' },
|
||||
-- { '│', 'FloatBorder' },
|
||||
-- },
|
||||
-- },
|
||||
},
|
||||
},
|
||||
{
|
||||
-- Autoclose parentheses, brackets, quotes, etc.
|
||||
'windwp/nvim-autopairs',
|
||||
event = 'InsertEnter',
|
||||
config = true,
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
-- Highlight todo, notes, etc in comments
|
||||
'folke/todo-comments.nvim',
|
||||
event = 'VimEnter',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
opts = { signs = false },
|
||||
},
|
||||
{
|
||||
-- high-performance color highlighter
|
||||
'norcalli/nvim-colorizer.lua',
|
||||
config = function()
|
||||
require('colorizer').setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue