forked from extern/nix-config
fix(neovim): Remove colorizer and cursorline
colorizer bugged out presumably due to order being determined by the Nix language. I did not like cursorline however I did think cursorword was cool, so I'm keeping that part of it for now.
This commit is contained in:
parent
053e365978
commit
4e47467c7c
@ -35,13 +35,6 @@
|
||||
}
|
||||
'';
|
||||
}
|
||||
/*
|
||||
{
|
||||
plugin = satellite-nvim;
|
||||
type = "lua";
|
||||
config = ''require('satellite').setup()'';
|
||||
}
|
||||
*/
|
||||
{
|
||||
plugin = gitsigns-nvim;
|
||||
type = "lua";
|
||||
@ -79,9 +72,7 @@
|
||||
config = ''
|
||||
require('nvim-cursorline').setup {
|
||||
cursorline = {
|
||||
enable = true,
|
||||
timeout = 1000,
|
||||
number = false,
|
||||
enable = false,
|
||||
},
|
||||
cursorword = {
|
||||
enable = true,
|
||||
@ -108,14 +99,6 @@
|
||||
plugin = clipboard-image-nvim;
|
||||
type = "lua";
|
||||
}
|
||||
{
|
||||
plugin = nvim-colorizer-lua;
|
||||
type = "lua";
|
||||
# Note: supposed to add this line at the end?
|
||||
config = ''
|
||||
require 'colorizer'.setup()
|
||||
'';
|
||||
}
|
||||
];
|
||||
};
|
||||
editorconfig = {
|
||||
|
Loading…
Reference in New Issue
Block a user