diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-28 18:24:33 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-28 18:24:33 +0530 |
| commit | a9040e6e7da371a076dde035f2520775d2b24690 (patch) | |
| tree | 61cc81045b46ae5773d55e2002255142c4bb025f | |
| parent | 420555802ec4d0070238f53d12e7102180526e9f (diff) | |
fzf, nvim-tree on left, Win+Ctrl+S to unmount from special workspace
| -rw-r--r-- | hypr/hyprland.conf | 1 | ||||
| -rw-r--r-- | nixos/environment.nix | 1 | ||||
| -rw-r--r-- | nvim/lua/chadrc.lua | 2 | ||||
| -rw-r--r-- | nvim/lua/plugins/init.lua | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 0e073a1..819b617 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -228,6 +228,7 @@ bind = $mainMod SHIFT, 9, movetoworkspace, 9 # Example special workspace (scratchpad) bind = $mainMod, S, togglespecialworkspace, magic bind = $mainMod SHIFT, S, movetoworkspace, special:magic +bind = $mainMod CTRL, S, movetoworkspace, e+0 # Scroll through existing workspaces with mainMod + scroll bind = $mainMod, mouse_down, workspace, e+1 diff --git a/nixos/environment.nix b/nixos/environment.nix index 87c36b8..bf81cf9 100644 --- a/nixos/environment.nix +++ b/nixos/environment.nix @@ -15,6 +15,7 @@ termusic eza lazygit + fzf ]; fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono diff --git a/nvim/lua/chadrc.lua b/nvim/lua/chadrc.lua index 9f9eecc..8dfd694 100644 --- a/nvim/lua/chadrc.lua +++ b/nvim/lua/chadrc.lua @@ -6,7 +6,7 @@ local M = {} M.base46 = { - theme = "catppuccin", + theme = "gruvbox", -- hl_override = { -- Comment = { italic = true }, diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua index c9b7ea8..7ed8f4b 100644 --- a/nvim/lua/plugins/init.lua +++ b/nvim/lua/plugins/init.lua @@ -43,7 +43,7 @@ return { "nvim-tree/nvim-tree.lua", opts = { view = { - side = "right" + side = "left" } } }, |
