feat(vim): setup nvim-scrollbar with gitsigns and hlsearch
This commit is contained in:
parent
69b4595dc3
commit
ffa8b048db
1 changed files with 35 additions and 0 deletions
|
@ -117,6 +117,20 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
plugin = gitsigns-nvim;
|
||||||
|
config = ''
|
||||||
|
lua <<EOF
|
||||||
|
require 'gitsigns'.setup {
|
||||||
|
signs = {
|
||||||
|
add = { text = '┆' },
|
||||||
|
change = { text = '┆' },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
plugin = lualine-nvim;
|
plugin = lualine-nvim;
|
||||||
config = ''
|
config = ''
|
||||||
|
@ -249,6 +263,13 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
plugin = nvim-hlslens;
|
||||||
|
config = ''
|
||||||
|
lua require 'hlslens'.setup {}
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
plugin = nvim-lspconfig;
|
plugin = nvim-lspconfig;
|
||||||
config = let
|
config = let
|
||||||
|
@ -274,6 +295,20 @@
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
plugin = nvim-scrollbar;
|
||||||
|
config = ''
|
||||||
|
lua <<EOF
|
||||||
|
require 'scrollbar'.setup {
|
||||||
|
show_in_active_only = true,
|
||||||
|
handlers = {
|
||||||
|
search = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
plugin = rust-tools-nvim;
|
plugin = rust-tools-nvim;
|
||||||
config = ''
|
config = ''
|
||||||
|
|
Loading…
Reference in a new issue