Skip to content

Commit

Permalink
update theme colour
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnakedev committed Nov 24, 2023
1 parent a9c9b13 commit 402315c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions home-manager/homeserver/local-modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -288,17 +288,19 @@ in
type = "lua";
config = ''
vim.g.material_style = "palenight"
require('material').setup({
local material = require 'material'
local colors = require 'material.colors'
material.setup{
custom_highlights = {
LineNr = { fg = '#6E98EB'},
CursorLineNr = { fg = '#89DDFF'},
LineNr = { fg = colors.main.paleblue },
CursorLineNr = { fg = colors.main.orange },
CocMenuSel = { fg = '#000000', bg = '#89DDFF' },
Structure = { fg = '#89DDFF'},
Identifier = { fg = '#F78C6C' },
CurSearch = { fg = '#000000', bg = '#89DDFF' },
Search = { fg = '#000000',bg = '#F78C6C' }
}
})
}
vim.cmd("colorscheme material ")
'';
}
Expand Down

0 comments on commit 402315c

Please sign in to comment.