From 7fb93e67d0fa39e2444a18b45fbba5129dd5d6e6 Mon Sep 17 00:00:00 2001 From: DemonKingSwarn Date: Tue, 21 Apr 2026 17:28:53 +0530 Subject: a lot of shit an automated commit --- home/editorconfig.nix | 2 +- home/wezterm.nix | 38 ++++++++++++++++++++++++++++++++++++++ home/xdg-user-dirs.nix | 2 +- 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 home/wezterm.nix (limited to 'home') diff --git a/home/editorconfig.nix b/home/editorconfig.nix index 5c4561c..312c33d 100644 --- a/home/editorconfig.nix +++ b/home/editorconfig.nix @@ -16,7 +16,7 @@ indent_size = 4; }; - "*.rs" = { + "*.jai" = { indent_size = 4; }; }; diff --git a/home/wezterm.nix b/home/wezterm.nix new file mode 100644 index 0000000..6a86aae --- /dev/null +++ b/home/wezterm.nix @@ -0,0 +1,38 @@ +{ ... }: + +{ + programs.wezterm = { + enable = true; + + extraConfig = '' + local wezterm = require("wezterm") + -- local catppuccin = require("colors/catppuccin") + + local config = { + default_cursor_style = "SteadyBar", + + -- Correct way: main font + emoji as fallback + font = wezterm.font_with_fallback { + "LythMono Nerd Font", + "NotoColorEmoji Regular", + }, + + font_size = 16.0, + + enable_tab_bar = false, + enable_wayland = true, + window_background_opacity = 0.9, + window_close_confirmation = "NeverPrompt", + default_prog = { "zsh" }, + + -- Use built-in Catppuccin (recommended, simpler) + color_scheme = "Catppuccin Mocha", + + -- If you prefer your custom colors file instead: + -- colors = catppuccin.mocha, + } + + return config + ''; + }; +} diff --git a/home/xdg-user-dirs.nix b/home/xdg-user-dirs.nix index 7c8bb16..efe9f22 100644 --- a/home/xdg-user-dirs.nix +++ b/home/xdg-user-dirs.nix @@ -15,7 +15,7 @@ in desktop = homeDirectory; download = "${homeDirectory}/dl"; documents = "${homeDirectory}/dox"; - music = "${homeDirectory}/music"; + music = "${homeDirectory}/musics"; pictures = "${homeDirectory}/pix"; videos = "${homeDirectory}/vids"; projects = "${homeDirectory}/dox/code"; -- cgit v1.1