diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..c08d4a0 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,5 @@ +background_opacity 0.6 +cursor_trail 1 +window_padding_width 25 + +include themes/noctalia.conf diff --git a/.config/kitty/themes/noctalia.conf b/.config/kitty/themes/noctalia.conf new file mode 100644 index 0000000..47c8384 --- /dev/null +++ b/.config/kitty/themes/noctalia.conf @@ -0,0 +1,32 @@ +color0 #494d64 +color1 #ed8796 +color2 #a6da95 +color3 #eed49f +color4 #8aadf4 +color5 #f5bde6 +color6 #8bd5ca +color7 #b8c0e0 +color8 #5b6078 +color9 #ed8796 +color10 #a6da95 +color11 #eed49f +color12 #8aadf4 +color13 #f5bde6 +color14 #8bd5ca +color15 #a5adcb + +cursor #f4dbd6 +cursor_text_color #24273a +background #24273a +foreground #cad3f5 +selection_foreground #cad3f5 +selection_background #5b6078 +active_border_color #f5bde6 +inactive_border_color #363a4f +url_color #f5bde6 + +active_tab_foreground #24273a +active_tab_background #f5bde6 +inactive_tab_foreground #a5adcb +inactive_tab_background #363a4f +cursor_trail_color #a5adcb diff --git a/.config/uwsm/env b/.config/uwsm/env new file mode 100644 index 0000000..1320827 --- /dev/null +++ b/.config/uwsm/env @@ -0,0 +1,15 @@ +export BROWSER=google-chrome +export TERM=xterm-kitty +export QT_QPA_PLATFORM="wayland;xcb" +export QT_QPA_PLATFORMTHEME="qt6ct" +export ELECTRON_OZONE_PLATFORM_HINT=auto +export HYPRCURSOR_THEME="Bibata-Modern-Ice" +export HYPRCURSOR_SIZE=24 +export XCURSOR_THEME="Bibata-Modern-Ice" +export XCURSOR_SIZE=24 + +# If you have an NVIDIA GPU uncommment the following lines +# export GBM_BACKEND=nvidia-drm # force GBM as a backend +# export __GLX_VENDOR_LIBRARY_NAME=nvidia # force GBM as a backend +# export LIBVA_DRIVER_NAME=nvidia # Hardware acceleration on NVIDIA GPUs +# export __GL_GSYNC_ALLOWED=1 # Controls if G-Sync capable monitors should use Variable Refresh Rate (VRR) diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..184c1eb --- /dev/null +++ b/.config/zed/settings.json @@ -0,0 +1,18 @@ +// Zed settings +// +// For information on how to configure Zed, see the Zed +// documentation: https://zed.dev/docs/configuring-zed +// +// To see all of Zed's default settings without changing your +// custom settings, run `zed: open default settings` from the +// command palette (cmd-shift-p / ctrl-shift-p) +{ + "icon_theme": "Catppuccin Frappé", + "ui_font_size": 16, + "buffer_font_size": 15, + "theme": { + "mode": "system", + "light": "One Light", + "dark": "Catppuccin Frappé", + }, +} diff --git a/.gitignore b/.gitignore index 836294d..b303c98 100755 --- a/.gitignore +++ b/.gitignore @@ -51,5 +51,13 @@ !.config/hypr/config/variables.lua !.config/hypr/config/windowrules.lua !.config/hypr/config/workspaces.lua +!.config/zed/ +!.config/zed/settings.json +!.config/uwsm/ +!.config/uwsm/env +!.config/kitty/ +!.config/kitty/kitty.conf +!.config/kitty/themes/ +!.config/kitty/themes/noctalia.conf !LICENSE !README.md