aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-16 10:54:49 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-16 10:54:49 +0100
commit78153bfc6f6e6fde58b49f3fce3fa37cea23d734 (patch)
tree89c7a26a763e5022a9e79b519d2d0f18ae165769 /modules
parentc986c5defcb66aad92dd133a7cb770b47b1f9d5c (diff)
added catppuccin colorscheme to neovim
Diffstat (limited to 'modules')
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
index c2a4fbe..e3904bc 100644
--- a/modules/home/i3wm/nord-blue/nvim.nix
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -19,6 +19,7 @@
telescope-nvim
plenary-nvim
which-key-nvim
+ catppuccin-nvim
{
plugin = vim-startify; # Add the plugin and its coresponding config
config = "let g:startify_change_to_vcs_root = 0";
@@ -35,6 +36,14 @@
vim.o.timeout = true
vim.o.timeoutlen = 300
+ vim.cmd.colorscheme("catppuccin")
+
+ -- Catppuccin theme
+ require("catppuccin").setup({
+ flavour = "mocha", -- latte, frappe, macchiato, mocha
+ transparent_background = false,
+ })
+
-- Treesitter
require("nvim-treesitter.configs").setup({
highlight = { enable = true },