mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 00:28:56 +02:00
added floating terminal and snacks
This commit is contained in:
parent
1f8a7a4eda
commit
4b43e2f49e
13 changed files with 672 additions and 55 deletions
|
@ -1,9 +1,17 @@
|
|||
return {
|
||||
{ -- Add indentation guides even on blank lines
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||
-- See `:help ibl`
|
||||
main = 'ibl',
|
||||
opts = {},
|
||||
-- Add indentation guides even on blank lines
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||
-- See `:help ibl`
|
||||
main = 'ibl',
|
||||
---@module "ibl"
|
||||
---@type ibl.config
|
||||
opts = {
|
||||
-- debounce = 100,
|
||||
indent = {
|
||||
char = { '│' },
|
||||
},
|
||||
whitespace = { highlight = { 'Whitespace', 'NonText' } },
|
||||
enabled = true,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue