mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
Minor fix
This commit is contained in:
parent
0f7a700cac
commit
fa89edab18
5 changed files with 30 additions and 4 deletions
|
|
@ -16,3 +16,6 @@ ToolBarsMovable=Disabled
|
||||||
|
|
||||||
[PreviewSettings]
|
[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
|
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
|
||||||
|
|
|
||||||
1
tools/fish/.gitignore
vendored
1
tools/fish/.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
fish_variables
|
fish_variables
|
||||||
completions
|
completions
|
||||||
|
functions/br.fish
|
||||||
themes/
|
themes/
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,10 @@
|
||||||
switch (uname)
|
switch (uname)
|
||||||
case "Darwin"
|
case "Darwin"
|
||||||
# macOS Specific
|
# macOS Specific
|
||||||
abbr --add clip pbcopy
|
#abbr --add clip pbcopy
|
||||||
abbr --add paste pbpaste
|
#abbr --add paste pbpaste
|
||||||
|
alias clip="pbcopy"
|
||||||
|
alias paste="pbpaste"
|
||||||
# Use GNU Coreutils
|
# Use GNU Coreutils
|
||||||
alias cp=gcp
|
alias cp=gcp
|
||||||
alias ln=gln
|
alias ln=gln
|
||||||
|
|
@ -21,11 +23,24 @@ case "Darwin"
|
||||||
alias rm=grm
|
alias rm=grm
|
||||||
alias rmdir=grmdir
|
alias rmdir=grmdir
|
||||||
alias touch=gtouch
|
alias touch=gtouch
|
||||||
|
alias clip=pbcopy
|
||||||
|
alias paste=pbpaste
|
||||||
abbr --add reboot "sudo reboot"
|
abbr --add reboot "sudo reboot"
|
||||||
case "Linux"
|
case "Linux"
|
||||||
# Linux Specific
|
# 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 '*'
|
case '*'
|
||||||
# Default / Fallback case
|
# Default / Fallback case
|
||||||
|
alias clip="xclip -selection clipboard"
|
||||||
|
alias paste="xclip -selection clipboard -o"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Powershell equivalent
|
# Powershell equivalent
|
||||||
|
|
@ -82,6 +97,12 @@ function mtv
|
||||||
mkdir -p (dirname $argv[1]) && touch $argv[1] && nvim $argv[1]
|
mkdir -p (dirname $argv[1]) && touch $argv[1] && nvim $argv[1]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function catclip
|
||||||
|
cat $argv | clip
|
||||||
|
end
|
||||||
|
|
||||||
|
abbr --add bcat "bat --style=plain"
|
||||||
|
|
||||||
# Use neovide as gVim
|
# Use neovide as gVim
|
||||||
abbr --add gvi "neovide"
|
abbr --add gvi "neovide"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,4 +4,5 @@ return function(config)
|
||||||
TERM = "xterm-256color",
|
TERM = "xterm-256color",
|
||||||
TERM_PROGRAM = "wezterm",
|
TERM_PROGRAM = "wezterm",
|
||||||
}
|
}
|
||||||
|
config.enable_wayland = false
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@ tabline.setup({
|
||||||
tabs_enabled = true,
|
tabs_enabled = true,
|
||||||
theme_overrides = {
|
theme_overrides = {
|
||||||
tab = {
|
tab = {
|
||||||
inactive = { bg = color.base, fg = color.text },
|
inactive = { bg = color.crust , fg = color.text },
|
||||||
active = { fg = color.lavender, bg = color.surface0 },
|
active = { fg = color.lavender, bg = color.base },
|
||||||
inactive_hover = { fg = color.pink, bg = color.surface0 },
|
inactive_hover = { fg = color.pink, bg = color.surface0 },
|
||||||
},
|
},
|
||||||
normal_mode = {
|
normal_mode = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue