From 4154533fa1ac46b4b7bca24a8262235125df9075 Mon Sep 17 00:00:00 2001 From: Michel Fedde Date: Sat, 15 Feb 2025 18:32:02 +0100 Subject: [PATCH] Adds config for kitty and updated keybinds --- .config/hypr/config/Keybinds.conf | 4 +-- .config/kitty/gruvbox.conf | 47 +++++++++++++++++++++++++++++++ .config/kitty/kitty.conf | 10 +++++++ .config/nvim/lazyvim.json | 2 +- .config/terminal/.setuprc | 2 +- 5 files changed, 61 insertions(+), 4 deletions(-) create mode 100644 .config/kitty/gruvbox.conf create mode 100644 .config/kitty/kitty.conf diff --git a/.config/hypr/config/Keybinds.conf b/.config/hypr/config/Keybinds.conf index d76faa1..41eb79e 100644 --- a/.config/hypr/config/Keybinds.conf +++ b/.config/hypr/config/Keybinds.conf @@ -95,8 +95,8 @@ bind = $mainMod CTRL, H, movecurrentworkspacetomonitor, l bind = $mainMod CTRL, K, movecurrentworkspacetomonitor, u bind = $mainMod CTRL, J, movecurrentworkspacetomonitor, d -bind = $mainMod, F, fullscreen, 0 -bind = $mainMod SHIFT, F, fullscreen, 1 +bind = ALT, Return, fullscreen, 0 +bind = $mainMod, Space, fullscreen, 1 $mainMod = SUPER $files = thunar diff --git a/.config/kitty/gruvbox.conf b/.config/kitty/gruvbox.conf new file mode 100644 index 0000000..a856d7f --- /dev/null +++ b/.config/kitty/gruvbox.conf @@ -0,0 +1,47 @@ +background #282828 +foreground #d4be98 + +selection_background #d4be98 +selection_foreground #282828 + +cursor #a89984 +cursor_text_color background + +active_tab_background #282828 +active_tab_foreground #d4be98 +active_tab_font_style bold +inactive_tab_background #282828 +inactive_tab_foreground #a89984 +inactive_tab_font_style normal + +# Black +color0 #665c54 +color8 #928374 + +# Red +color1 #ea6962 +color9 #ea6962 + +# Green +color2 #a9b665 +color10 #a9b665 + +# Yellow +color3 #e78a4e +color11 #d8a657 + +# Blue +color4 #7daea3 +color12 #7daea3 + +# Magenta +color5 #d3869b +color13 #d3869b + +# Cyan +color6 #89b482 +color14 #89b482 + +# White +color7 #d4be98 +color15 #d4be98 diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..a657f05 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,10 @@ +include gruvbox.conf + +font_family family="JetBrainsMono Nerd Font Mono" +bold_font auto +italic_font auto +bold_italic_font auto + +font_size 12.0 + + diff --git a/.config/nvim/lazyvim.json b/.config/nvim/lazyvim.json index 3ecab1b..b2d3500 100644 --- a/.config/nvim/lazyvim.json +++ b/.config/nvim/lazyvim.json @@ -7,5 +7,5 @@ "news": { "NEWS.md": "10960" }, - "version": 8 + "version": 7 } \ No newline at end of file diff --git a/.config/terminal/.setuprc b/.config/terminal/.setuprc index d99ca70..826351c 100644 --- a/.config/terminal/.setuprc +++ b/.config/terminal/.setuprc @@ -10,6 +10,6 @@ alias vim='nvim' alias note='(cd ~/Notes/ && ENABLE_GIT_SETUP=true nvim ~/Notes/)' alias note-diary='(cd ~/Notes/ && ENABLE_GIT_SETUP=true nvim ~/Notes/Diary.md)' alias note-dsa='(cd ~/DSA/ && ENABLE_GIT_SETUP=true nvim ~/DSA/)' -alias note-dsa-players='(cd ~/DSA/Spieler/ && nvim ~/DSA/Spieler/)' +alias note-dsa-players='(cd ~/DSA/Spieler/ && ENABLE_GIT_SETUP=true nvim ~/DSA/Spieler/)' eval "$(zoxide init bash --cmd cd)"