Skip to content

Commit

Permalink
Merge pull request #19 from solidsnakedev/server
Browse files Browse the repository at this point in the history
add easymotion, change colorscheme
  • Loading branch information
solidsnakedev committed Nov 24, 2023
2 parents 8dec155 + 578cffd commit a8b2c95
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions home-manager/homeserver/local-modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,13 @@ in
nmap("<leader>fh", ":Telescope help_tags<cr>")
'';
}
lightspeed-nvim

{
plugin = vim-easymotion;
config = ''
nmap s <Plug>(easymotion-s)
'';
}

# WildMenu
{
Expand Down Expand Up @@ -281,9 +287,11 @@ in
plugin = material-nvim;
type = "lua";
config = ''
vim.g.material_style = "darker"
vim.g.material_style = "palenight"
require('material').setup({
custom_highlights = {
LineNr = { fg = '#6E98EB'},
CursorLineNr = { fg = '#89DDFF'},
CocMenuSel = { fg = '#000000', bg = '#89DDFF' },
Structure = { fg = '#89DDFF'},
Identifier = { fg = '#F78C6C' },
Expand Down

0 comments on commit a8b2c95

Please sign in to comment.