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, 32 insertions, 0 deletions
diff --git a/config/default.nix b/config/default.nix
new file mode 100644
index 0000000..79756d6
--- /dev/null
+++ b/config/default.nix
@@ -0,0 +1,32 @@
+{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;
+ };
+ };
+}