Compare commits
2 Commits
203913aa58
...
bc85f3cb09
| Author | SHA1 | Date | |
|---|---|---|---|
| bc85f3cb09 | |||
| 6e5dc5decd |
@@ -1,4 +1,60 @@
|
||||
[main]
|
||||
font = Fira Code Nerd Font:size=11
|
||||
font = HurmitNerdFont:size=10
|
||||
initial-color-theme = dark
|
||||
|
||||
include = /usr/share/foot/themes/nord
|
||||
[colors-dark]
|
||||
foreground = a29e98
|
||||
background = 272117
|
||||
cursor = 272117 73d0b1
|
||||
selection-foreground = 272117
|
||||
selection-background = 276c9a
|
||||
|
||||
regular0 = 85919b
|
||||
regular1 = c37583
|
||||
regular2 = 44a386
|
||||
regular3 = af8842
|
||||
regular4 = 5396c7
|
||||
regular5 = a57cba
|
||||
regular6 = 2da0ad
|
||||
regular7 = b0bcc7
|
||||
|
||||
bright0 = 85919b
|
||||
bright1 = f2a0ae
|
||||
bright2 = 73d0b1
|
||||
bright3 = dcb46e
|
||||
bright4 = 7fc3f5
|
||||
bright5 = d2a8e8
|
||||
bright6 = 62cdda
|
||||
bright7 = a29e98
|
||||
|
||||
[colors-light]
|
||||
foreground = 696257
|
||||
background = faf8f5
|
||||
cursor = faf8f5 7ad6b7
|
||||
selection-foreground = faf8f5
|
||||
selection-background = 3a7ead
|
||||
|
||||
regular0 = 272117
|
||||
regular1 = d0818f
|
||||
regular2 = 52af92
|
||||
regular3 = bc944f
|
||||
regular4 = 60a3d4
|
||||
regular5 = b289c7
|
||||
regular6 = 3dadba
|
||||
regular7 = b6c3cd
|
||||
|
||||
bright0 = 919da7
|
||||
bright1 = 85c9fc
|
||||
bright2 = 7ad6b7
|
||||
bright3 = e3ba74
|
||||
bright4 = 60a3d4
|
||||
bright5 = d9aeee
|
||||
bright6 = 85c9fc
|
||||
bright7 = faf8f5
|
||||
|
||||
[key-bindings]
|
||||
color-theme-toggle = Control+Shift+t
|
||||
primary-paste = Shift+Insert Control+Shift+i
|
||||
|
||||
[search-bindings]
|
||||
primary-paste = Shift+Insert Control+Shift+i
|
||||
|
||||
@@ -20,8 +20,7 @@ map global -docstring 'Buffer' user ' ' ': buffer '
|
||||
declare-user-mode file-mode
|
||||
map global -docstring 'Search/open' user 's' ': enter-user-mode file-mode<ret>'
|
||||
|
||||
map global -docstring 'Open (git)' file-mode 'a' ': file-open-git<ret>'
|
||||
map global -docstring 'Open (fd)' file-mode 'f' ': file-open<ret>'
|
||||
map global -docstring 'Open (fd)' file-mode 'a' ': file-open<ret>'
|
||||
map global -docstring 'Open (fd -H)' file-mode 'h' ': file-open-with-hidden<ret>'
|
||||
map global -docstring 'Open (recent)' file-mode 'r' ': file-open-recent<ret>'
|
||||
map global -docstring 'Open (nnn)' file-mode 'd' ': nnn-open %val{buffile}<ret>'
|
||||
@@ -39,6 +38,7 @@ map global -docstring 'Delete buffer' file-mode 'x' ': delete-buffer '
|
||||
declare-user-mode git-mode
|
||||
map global -docstring 'Git' user 'g' ': enter-user-mode git-mode<ret>'
|
||||
|
||||
map global -docstring 'Open file' git-mode 'a' ': file-open-git<ret>'
|
||||
map global -docstring 'Blame' git-mode 'b' ': git blame<ret>'
|
||||
map global -docstring 'Blame' git-mode 'B' ': git blame-jump<ret>'
|
||||
map global -docstring 'Diff file' git-mode 'd' ': git diff %val{buffile}<ret>'
|
||||
|
||||
@@ -44,12 +44,19 @@ if [ -f "$ATOML" ]; then
|
||||
sed -i "s#^import =.*#import = [\"~/.config/alacritty/$THEME.toml\"]#" "$ATOML"
|
||||
fi
|
||||
|
||||
# Kitty
|
||||
if [ "$THEME" = dark ]; then
|
||||
kitten themes --reload-in=all 'five-colors-dark'
|
||||
elif [ "$THEME" = light ]; then
|
||||
kitten themes --reload-in=all 'five-colors-light'
|
||||
fi
|
||||
|
||||
# Foot
|
||||
FOOT=$(readlink -e ~/.config/foot/foot.ini)
|
||||
if [ -n "$FOOT" ]; then
|
||||
sed -i "s/^initial-color-theme .*/initial-color-theme = $THEME/" "$FOOT"
|
||||
fi
|
||||
|
||||
# GTK
|
||||
XSET=$(readlink -e ~/.config/xsettingsd/xsettingsd.conf)
|
||||
if [ -n "$XSET" ]; then
|
||||
|
||||
Reference in New Issue
Block a user