Add more plugins mainly from LazyVim
This commit is contained in:
parent
65836158fa
commit
c903cf7655
8 changed files with 75 additions and 27 deletions
|
|
@ -4,6 +4,19 @@ return {
|
|||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||
-- See `:help ibl`
|
||||
main = 'ibl',
|
||||
opts = {},
|
||||
opts = {
|
||||
indent = {
|
||||
-- char = '▏',
|
||||
char = '╎',
|
||||
},
|
||||
exclude = {
|
||||
filetypes = { 'dashboard' },
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
require('ibl').setup(opts)
|
||||
|
||||
vim.keymap.set('n', '<leader>ti', ':IBLToggle<CR>', { noremap = true, silent = true, desc = '[T]oggle [I]ndent guides' })
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue