Move indent-blankline config to ui stuff
This commit is contained in:
parent
b3ffefc07c
commit
b3925cebad
|
@ -1,17 +0,0 @@
|
|||
vim.cmd [[highlight IndentBlanklineIndent1 guibg=#333333 gui=nocombine]]
|
||||
vim.cmd [[highlight IndentBlanklineIndent2 guibg=#000000 gui=nocombine]]
|
||||
|
||||
require("indent_blankline").setup {
|
||||
char = "",
|
||||
char_highlight_list = {
|
||||
"IndentBlanklineIndent1",
|
||||
"IndentBlanklineIndent2",
|
||||
},
|
||||
space_char_highlight_list = {
|
||||
"IndentBlanklineIndent1",
|
||||
"IndentBlanklineIndent2",
|
||||
},
|
||||
show_trailing_blankline_indent = false,
|
||||
show_current_context = true,
|
||||
show_current_context_start = true,
|
||||
}
|
|
@ -37,7 +37,6 @@ return {
|
|||
|
||||
'junegunn/vim-easy-align',
|
||||
'machakann/vim-highlightedyank',
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
'lambdalisue/suda.vim',
|
||||
-- git
|
||||
'lambdalisue/gina.vim',
|
||||
|
|
|
@ -1,12 +1,30 @@
|
|||
return {
|
||||
{'stevearc/dressing.nvim',
|
||||
{
|
||||
'stevearc/dressing.nvim',
|
||||
dependencies = {
|
||||
'nvim-telescope/telescope-ui-select.nvim',
|
||||
},
|
||||
opts = {
|
||||
select = {
|
||||
backend = {'telescope'}
|
||||
backend = { 'telescope' }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
opts = {
|
||||
char = "",
|
||||
char_highlight_list = {
|
||||
"Normal",
|
||||
"CursorLine",
|
||||
},
|
||||
space_char_highlight_list = {
|
||||
"Normal",
|
||||
"CursorLine",
|
||||
},
|
||||
show_trailing_blankline_indent = false,
|
||||
show_current_context = true,
|
||||
show_current_context_start = true,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue