summaryrefslogtreecommitdiff
path: root/config/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/default.nix')
-rw-r--r--config/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/config/default.nix b/config/default.nix
deleted file mode 100644
index 79756d6..0000000
--- a/config/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{pkgs, ...}: {
- imports = [
- ./plugins
- ./keymaps.nix
- ];
-
- config = {
- clipboard.providers.wl-copy.enable = pkgs.stdenv.isLinux;
-
- colorschemes.catppuccin = {
- enable = true;
- flavour = "mocha";
-
- disableItalic = true;
- };
-
- enableMan = false;
-
- globals = {
- mapleader = ",";
- };
-
- options = {
- shiftwidth = 2;
- tabstop = 2;
- smartindent = true;
- wrap = true;
- syntax = "on";
- termguicolors = true;
- };
- };
-}