diff options
Diffstat (limited to 'nixvim/default.nix')
| -rw-r--r-- | nixvim/default.nix | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/nixvim/default.nix b/nixvim/default.nix new file mode 100644 index 0000000..c1c275c --- /dev/null +++ b/nixvim/default.nix @@ -0,0 +1,50 @@ +{ + imports = [ + ./filetypes + ./plugins + ]; + + colorschemes.catppuccin = { + enable = true; + + settings = { + flavour = "mocha"; + + integrations = { + cmp = true; + flash = true; + gitsigns = true; + indent_blankline = { + enabled = true; + }; + lsp_trouble = true; + native_lsp = { + enabled = true; + }; + neotree = true; + treesitter = true; + telescope = true; + which_key = true; + }; + + no_italic = true; + }; + }; + + globals = { + mapleader = " "; + }; + + opts = { + shiftwidth = 2; + tabstop = 2; + + # line stuff + number = true; + wrap = true; + + # ui + mouse = "a"; + showmode = false; # status line does this + }; +} |
