Minor fix

This commit is contained in:
js0ny 2025-02-20 01:52:28 +00:00
parent 0f7a700cac
commit fa89edab18
5 changed files with 30 additions and 4 deletions

View file

@ -16,3 +16,6 @@ ToolBarsMovable=Disabled
[PreviewSettings]
Plugins=appimagethumbnail,audiothumbnail,avif,blenderthumbnail,comicbookthumbnail,cursorthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,directorythumbnail,fontthumbnail,heif,imagethumbnail,jpegthumbnail,jxl,kraorathumbnail,windowsexethumbnail,windowsimagethumbnail,mobithumbnail,opendocumentthumbnail,gsthumbnail,rawthumbnail,svgthumbnail,textthumbnail,ffmpegthumbs,gdk-pixbuf-thumbnailer
[Search]
Location=Everywhere

View file

@ -1,3 +1,4 @@
fish_variables
completions
functions/br.fish
themes/

View file

@ -11,8 +11,10 @@
switch (uname)
case "Darwin"
# macOS Specific
abbr --add clip pbcopy
abbr --add paste pbpaste
#abbr --add clip pbcopy
#abbr --add paste pbpaste
alias clip="pbcopy"
alias paste="pbpaste"
# Use GNU Coreutils
alias cp=gcp
alias ln=gln
@ -21,11 +23,24 @@ case "Darwin"
alias rm=grm
alias rmdir=grmdir
alias touch=gtouch
alias clip=pbcopy
alias paste=pbpaste
abbr --add reboot "sudo reboot"
case "Linux"
# Linux Specific
#switch($XDG_SESSION_TYPE)
#case "wayland"
# Wayland Specific
alias clip="wl-copy"
alias paste="wl-paste"
#case "x11"
# # X11 Specific
# alias clip="xclip -selection clipboard"
# alias paste="xclip -selection clipboard -o"
case '*'
# Default / Fallback case
alias clip="xclip -selection clipboard"
alias paste="xclip -selection clipboard -o"
end
# Powershell equivalent
@ -82,6 +97,12 @@ function mtv
mkdir -p (dirname $argv[1]) && touch $argv[1] && nvim $argv[1]
end
function catclip
cat $argv | clip
end
abbr --add bcat "bat --style=plain"
# Use neovide as gVim
abbr --add gvi "neovide"

View file

@ -4,4 +4,5 @@ return function(config)
TERM = "xterm-256color",
TERM_PROGRAM = "wezterm",
}
config.enable_wayland = false
end

View file

@ -10,8 +10,8 @@ tabline.setup({
tabs_enabled = true,
theme_overrides = {
tab = {
inactive = { bg = color.base, fg = color.text },
active = { fg = color.lavender, bg = color.surface0 },
inactive = { bg = color.crust , fg = color.text },
active = { fg = color.lavender, bg = color.base },
inactive_hover = { fg = color.pink, bg = color.surface0 },
},
normal_mode = {