Skip to content

Commit

Permalink
style: update theme
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnakedev committed Apr 3, 2024
1 parent 7a93d8e commit 1e92c29
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,7 @@ in
enable = true,
disable = {"haskell"},
additional_vim_regex_highlighting = false,
},
context_commentstring = {
enable = true,
},
}
})
'';
}
Expand Down Expand Up @@ -292,8 +289,24 @@ in
})
'';
}

papercolor-theme
kanagawa-nvim

{
plugin = kanagawa-nvim;
type = "lua";
config = ''
require('kanagawa').setup({
overrides = function(colors) -- add/modify highlights
return {
LineNr = { fg = colors.palette.dragonYellow , bg = "NONE"},
CursorLineNr = { fg = colors.palette.autumnYellow , bg = "NONE" },
}
end,
})
vim.cmd("colorscheme kanagawa")
'';
}

{
plugin = material-nvim;
Expand All @@ -313,7 +326,7 @@ in
Search = { fg = '#000000',bg = '#F78C6C' }
}
}
vim.cmd("colorscheme material ")
-- vim.cmd("colorscheme material ")
'';
}

Expand Down

0 comments on commit 1e92c29

Please sign in to comment.