summaryrefslogtreecommitdiff
path: root/config/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-31 08:01:03 -0500
committerseth <[email protected]>2023-12-31 08:52:04 -0500
commitdec8d36cbdbb3b9c5c12792ed199892ce2e82069 (patch)
tree89422c04c25b4ed4c3156d4477c894416500e8b3 /config/default.nix
parentae9136a14ae0b0fe91faad59b23d3a532ca84ed5 (diff)
back to regular lua
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;
- };
- };
-}