Update indent blankline plugin configuration
This commit is contained in:
parent
5f3c13ca91
commit
5bef12e558
2 changed files with 18 additions and 2 deletions
|
@ -65,7 +65,15 @@ in
|
|||
type = "lua";
|
||||
config = (builtins.readFile ./files/luasnip.lua);
|
||||
}
|
||||
indent-blankline-nvim
|
||||
{
|
||||
plugin = indent-blankline-nvim;
|
||||
type = "lua";
|
||||
config =''
|
||||
require("ibl").setup{
|
||||
indent = { char = "│"},
|
||||
}
|
||||
'';
|
||||
}
|
||||
{
|
||||
plugin = nvim-lspconfig;
|
||||
type = "lua";
|
||||
|
|
|
@ -15,8 +15,16 @@ vim.opt.hlsearch = true -- search: hightlight terms
|
|||
vim.opt.ignorecase = true
|
||||
vim.opt.incsearch = true
|
||||
vim.opt.laststatus = 1
|
||||
|
||||
-- show special character
|
||||
vim.opt.listchars = {tab = '→ ', trail = '␣', eol = '', extends = '…' }
|
||||
vim.opt.listchars = {
|
||||
tab = '→ ',
|
||||
trail = '␣',
|
||||
space = '·',
|
||||
eol = '',
|
||||
extends = '…',
|
||||
precedes = "<"
|
||||
}
|
||||
|
||||
vim.opt.signcolumn = "yes" -- alway show sign column
|
||||
vim.opt.number = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue