From 25114b90f279d2d4660118c650deec45047f7576 Mon Sep 17 00:00:00 2001 From: Jaroslaw Konik Date: Fri, 11 Apr 2025 17:29:41 +0200 Subject: [PATCH] update --- .gitmodules | 3 +++ alacritty-theme | 1 + alacritty.toml | 8 +++++++ init.lua | 5 +++++ kitty/kitty-themes | 1 - kitty/kitty.conf | 54 ---------------------------------------------- 6 files changed, 17 insertions(+), 55 deletions(-) create mode 100644 .gitmodules create mode 160000 alacritty-theme delete mode 160000 kitty/kitty-themes delete mode 100644 kitty/kitty.conf diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cc0057b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "alacritty-theme"] + path = alacritty-theme + url = https://github.com/alacritty/alacritty-theme diff --git a/alacritty-theme b/alacritty-theme new file mode 160000 index 0000000..86c5784 --- /dev/null +++ b/alacritty-theme @@ -0,0 +1 @@ +Subproject commit 86c578469e2bf784faf6f916883bf48349ff4f6d diff --git a/alacritty.toml b/alacritty.toml index 0ae520a..9198f3b 100644 --- a/alacritty.toml +++ b/alacritty.toml @@ -1,3 +1,8 @@ +[general] +import = [ + "~/src/dotfiles/alacritty-theme/themes/kanagawa_wave.toml" +] + [font] size = 12 @@ -16,3 +21,6 @@ style = "Italic" [font.normal] family = "FiraCode Nerd Font" style = "Regular" + +[window] +opacity = 0.97 diff --git a/init.lua b/init.lua index b27c45e..90e78a8 100644 --- a/init.lua +++ b/init.lua @@ -323,6 +323,11 @@ require("lazy").setup({ { "lg", "LazyGit", desc = "LazyGit" } } }, + { + 'tribela/transparent.nvim', + event = 'VimEnter', + config = true, + } }) ------------------------------------------------------------------------------- diff --git a/kitty/kitty-themes b/kitty/kitty-themes deleted file mode 160000 index b1abdd5..0000000 --- a/kitty/kitty-themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b1abdd54ba655ef34f75a568d78625981bf1722c diff --git a/kitty/kitty.conf b/kitty/kitty.conf deleted file mode 100644 index 5bb64ed..0000000 --- a/kitty/kitty.conf +++ /dev/null @@ -1,54 +0,0 @@ -font_family FiraCode NerdFont -tab_bar_style powerline -font_size 12.0 -tab_bar_min_tabs 1 -tab_powerline_style slanted -map ctrl+g kitten hints --type=linenum --linenum-action=background sh -c "nvim_remote +{line} {path}" -tab_bar_edge top -include ./kitty-themes/themes/Espresso.conf -map shift+f1 new_tab -map shift+f2 new_tab_with_cwd -map ctrl+shift+w no_op -map alt+>, no_op -map alt+< no_op -allow_remote_control yes -listen_on unix:@mykitty - -enabled_layouts splits - -map shift+f3 new_tab_with_cwd - -# Create a new window splitting the space used by the existing one so that -# the two windows are placed one above the other -map shift+f5 launch --location=hsplit --cwd=current - -# Create a new window splitting the space used by the existing one so that -# the two windows are placed side by side -map shift+f6 launch --location=vsplit --cwd=current - -# Create a new window splitting the space used by the existing one so that -# the two windows are placed side by side if the existing window is wide or -# one above the other if the existing window is tall. -map shift+f4 launch --location=split --cwd=current - -# Rotate the current split, changing its split axis from vertical to -# horizontal or vice versa -map shift+f7 layout_action rotate - -# Move the active window in the indicated direction -map shift+up move_window up -map shift+left move_window left -map shift+right move_window right -map shift+down move_window down - -# Move the active window to the indicated screen edge -map ctrl+shift+up layout_action move_to_screen_edge top -map ctrl+shift+left layout_action move_to_screen_edge left -map ctrl+shift+right layout_action move_to_screen_edge right -map ctrl+shift+down layout_action move_to_screen_edge bottom - -# Switch focus to the neighboring window in the indicated direction -map ctrl+left neighboring_window left -map ctrl+right neighboring_window right -map ctrl+up neighboring_window up -map ctrl+down neighboring_window down