mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43: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]
|
||||
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
|
||||
completions
|
||||
functions/br.fish
|
||||
themes/
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -4,4 +4,5 @@ return function(config)
|
|||
TERM = "xterm-256color",
|
||||
TERM_PROGRAM = "wezterm",
|
||||
}
|
||||
config.enable_wayland = false
|
||||
end
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue