From 4e47467c7ca02ef9bf6a75cc5b21584611a5e710 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 9 May 2023 23:43:37 -0400 Subject: [PATCH] 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. --- modules/editor.nix | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/modules/editor.nix b/modules/editor.nix index 3dbc3d2..c36ef41 100644 --- a/modules/editor.nix +++ b/modules/editor.nix @@ -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 = {