From 46f90cdd2bc777948533ff7014c8ba8202e370f7 Mon Sep 17 00:00:00 2001 From: solidsnakedev Date: Thu, 23 Nov 2023 19:08:38 -0500 Subject: [PATCH] add easymotion, improve colorscheme --- home-manager/mac/local-modules/neovim.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home-manager/mac/local-modules/neovim.nix b/home-manager/mac/local-modules/neovim.nix index 533709a..9559ede 100644 --- a/home-manager/mac/local-modules/neovim.nix +++ b/home-manager/mac/local-modules/neovim.nix @@ -226,7 +226,13 @@ in nmap("fh", ":Telescope help_tags") ''; } - lightspeed-nvim + + { + plugin = vim-easymotion; + config = '' + nmap s (easymotion-s) + ''; + } # WildMenu { @@ -294,6 +300,7 @@ in require('material').setup({ custom_highlights = { LineNr = { fg = '#6E98EB'}, + CursorLineNr = { fg = '#89DDFF'}, CocMenuSel = { fg = '#000000', bg = '#89DDFF' }, Structure = { fg = '#89DDFF'}, Identifier = { fg = '#F78C6C' },