From 1f1340929f3e57716f1d88486f5f0ebb7d841004 Mon Sep 17 00:00:00 2001 From: fwastring Date: Mon, 28 Jul 2025 10:11:20 +0200 Subject: [PATCH] kitty --- config/dev.nix | 4 +++- config/lsp.nix | 7 +++++++ config/system.nix | 1 + shared/kitty.nix | 14 -------------- 4 files changed, 11 insertions(+), 15 deletions(-) diff --git a/config/dev.nix b/config/dev.nix index 94e34f5..a3aa878 100644 --- a/config/dev.nix +++ b/config/dev.nix @@ -30,6 +30,9 @@ in azure-cli dotnetCorePackages.sdk_8_0_3xx google-cloud-sdk + jira-cli-go + gh + allure awscli unstable.minio-client @@ -38,7 +41,6 @@ in postgresql go-migrate-pg argocd - gh ngrok tailwindcss yarn diff --git a/config/lsp.nix b/config/lsp.nix index 9d7d131..a5cb55c 100644 --- a/config/lsp.nix +++ b/config/lsp.nix @@ -19,5 +19,12 @@ dockerfile-language-server-nodejs nodejs_22 bash-language-server + helm-ls + yaml-language-server + vue-language-server + vtsls + typescript + typescript-language-server + lua-language-server ]; } diff --git a/config/system.nix b/config/system.nix index a3f1ec8..0570621 100644 --- a/config/system.nix +++ b/config/system.nix @@ -62,6 +62,7 @@ pass-update ])) lazygit + chawan # Typesetting typst diff --git a/shared/kitty.nix b/shared/kitty.nix index 7bda25b..adde5d0 100644 --- a/shared/kitty.nix +++ b/shared/kitty.nix @@ -10,16 +10,12 @@ font = if myhostname == "laptop" then { - # name = "Iosevka Nerd Font Bold"; name = "ComicShannsMono Nerd Font"; - # name = "Hack Nerd Font Mono Bold"; size = 18; } else { - # name = "Iosevka Nerd Font Bold"; name = "ComicShannsMono Nerd Font"; - # name = "Hack Nerd Font Mono Bold"; size = 12; }; shellIntegration = { @@ -32,15 +28,5 @@ cursor_blink_interval = 0; enable_audio_bell = false; }; - keybindings = { - "ctrl+alt+k" = "launch --location=hsplit --cwd=current"; - "ctrl+alt+l" = "launch --location=vsplit --cwd=current"; - "ctrl+shift+n" = "next_tab"; - "ctrl+shift+b" = "prev_tab"; - "ctrl+h" = "neighboring_window left"; - "ctrl+l" = "neighboring_window right"; - "ctrl+j" = "neighboring_window down"; - "ctrl+k" = "neighboring_window up"; - }; }; }