1
0
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:
Donovan Glover 2023-05-09 23:43:37 -04:00
parent 053e365978
commit 4e47467c7c
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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 = {