๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

move fish scripts to shell directory

Kacaii 6ea1b3a7 6a09dd2d

+23 -9
.config/fish/abbr.fish .config/fish/shell/abbr.fish
+3 -3
.config/fish/config.fish
··· 3 3 set -g fish_greeting "" 4 4 set fish_color_valid_path 5 5 6 - source $__fish_config_dir/set_variables.fish 7 - source $__fish_config_dir/abbr.fish 8 - source $__fish_config_dir/ensure_path.fish 6 + for script in $__fish_config_dir/shell 7 + source $script 8 + end 9 9 10 10 fzf --fish | source 11 11 zoxide init fish | source
.config/fish/ensure_path.fish .config/fish/shell/ensure_path.fish
+13
.config/fish/shell/config.fish
··· 1 + if status is-interactive 2 + 3 + set -g fish_greeting "" 4 + set fish_color_valid_path 5 + 6 + source $__fish_config_dir/set_variables.fish 7 + source $__fish_config_dir/abbr.fish 8 + source $__fish_config_dir/ensure_path.fish 9 + 10 + fzf --fish | source 11 + zoxide init fish | source 12 + 13 + end
+7 -6
.config/nvim/lua/plugins/colorscheme.lua
··· 71 71 CursorLine = { bg = custom_bg }, 72 72 Label = { fg = colors.blue }, 73 73 LineNr = { fg = colors.overlay1 }, 74 + Delimiter = { fg = colors.overlay1 }, 74 75 75 76 -- ๎ญฟ Making the float window same color as the bg 76 77 NormalFloat = { bg = colors.base }, 78 + FloatTitle = { fg = colors.overlay0, bg = colors.base }, 77 79 FloatBorder = { fg = colors.overlay1, bg = colors.none }, 78 80 79 81 -- ๏’ง TODO ··· 86 88 TodoBgWARN = { fg = colors.yellow, bg = colors.base }, 87 89 TodoBgCAUTION = { fg = colors.red, bg = colors.base }, 88 90 89 - -- ๓ฑ€ Completion -- 91 + -- ๓ฑ€ Completion 90 92 Pmenu = { bg = colors.none }, 91 93 PmenuSel = { fg = colors.text, bg = colors.surface0 }, 92 94 93 - -- ๓ฑ€ BlinkCmp -- 95 + -- ๓ฑ€ BlinkCmp 94 96 BlinkCmpKindStruct = { fg = colors.yellow }, 95 97 BlinkCmpKindEnum = { fg = colors.yellow }, 96 98 BlinkCmpKindEnumMember = { fg = colors.peach }, 97 99 BlinkCmpMenuBorder = { fg = colors.overlay1, bg = colors.base }, 98 100 BlinkCmpDoc = { fg = colors.overlay1, bg = colors.base }, 99 101 100 - -- ๎ฏŒ Yanky -- 102 + -- ๎ฏŒ Yanky 101 103 YankyYanked = { fg = colors.base, bg = colors.peach }, 102 104 YankyPut = { fg = colors.base, bg = colors.peach }, 103 105 104 106 -- ๓ฑฅฐ Snacks 105 - SnacksPickerRule = { fg = colors.overlay1 }, 106 - 107 + SnacksPickerRule = { bg = colors.overlay1 }, 107 108 SnacksDashboardHeader = { fg = colors.mauve }, 108 109 SnacksDashboardIcon = { fg = colors.mauve }, 109 110 SnacksDashboardKey = { fg = colors.mauve }, ··· 138 139 ["@markup.heading.4.markdown"] = { fg = colors.sky }, 139 140 ["@markup.heading.5.markdown"] = { fg = colors.sky }, 140 141 ["@markup.heading.6.markdown"] = { fg = colors.sky }, 141 - ["@punctuation.special.markdown"] = { fg = colors.overlay2 }, 142 + ["@punctuation.special.markdown"] = { fg = colors.overlay1 }, 142 143 143 144 -- ๎šฉ Zig Highlights -- 144 145 ["@function.builtin.zig"] = { fg = colors.peach },