Set up kitty
This commit is contained in:
parent
61fbbfb1a6
commit
7442afd3ab
|
@ -26,6 +26,7 @@ alias dockerpurge="docker system prune --all --force --volumes"
|
||||||
alias dockerkill="docker stop `docker ps -a -q`"
|
alias dockerkill="docker stop `docker ps -a -q`"
|
||||||
alias vi="nvim"
|
alias vi="nvim"
|
||||||
alias tp="$HOME/bin/tmux_pair.bash"
|
alias tp="$HOME/bin/tmux_pair.bash"
|
||||||
|
alias tpdf="termpdf.py"
|
||||||
|
|
||||||
# Prompt setup
|
# Prompt setup
|
||||||
GIT_PS1_SHOWDIRTYSTATE=1
|
GIT_PS1_SHOWDIRTYSTATE=1
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
heroku
|
heroku
|
||||||
htop
|
htop
|
||||||
kde-gruvbox
|
kde-gruvbox
|
||||||
|
kitty
|
||||||
|
kitty-themes
|
||||||
libreoffice
|
libreoffice
|
||||||
lshw
|
lshw
|
||||||
nerdfonts
|
nerdfonts
|
||||||
|
@ -47,6 +49,7 @@
|
||||||
rubyPackages_3_1.solargraph
|
rubyPackages_3_1.solargraph
|
||||||
slack
|
slack
|
||||||
spotify
|
spotify
|
||||||
|
termpdfpy
|
||||||
thunderbird
|
thunderbird
|
||||||
wine
|
wine
|
||||||
winetricks
|
winetricks
|
||||||
|
@ -76,6 +79,7 @@
|
||||||
cmp-path
|
cmp-path
|
||||||
cmp-nvim-lsp
|
cmp-nvim-lsp
|
||||||
cmp-buffer
|
cmp-buffer
|
||||||
|
hologram-nvim
|
||||||
nvim-dap
|
nvim-dap
|
||||||
nvim-dap-ui
|
nvim-dap-ui
|
||||||
vimwiki
|
vimwiki
|
||||||
|
@ -89,6 +93,8 @@
|
||||||
xdg.configFile."git/config_foxsoft".source = ./git/config_foxsoft;
|
xdg.configFile."git/config_foxsoft".source = ./git/config_foxsoft;
|
||||||
xdg.configFile."nvim/init.lua".source = ./nvim/init.lua;
|
xdg.configFile."nvim/init.lua".source = ./nvim/init.lua;
|
||||||
xdg.configFile."nvim/lua/tsv/remap.lua".source = ./nvim/lua/tsv/remap.lua;
|
xdg.configFile."nvim/lua/tsv/remap.lua".source = ./nvim/lua/tsv/remap.lua;
|
||||||
|
xdg.configFile."kitty/kitty.conf".source = ./kitty/kitty.conf;
|
||||||
|
xdg.configFile."kitty/gruvbox_dark_soft.conf".source = ./kitty/gruvbox_dark_soft.conf;
|
||||||
home.file.".ssh/config".source = ./ssh/config;
|
home.file.".ssh/config".source = ./ssh/config;
|
||||||
home.file.".LESS_TERMCAP".source = ./LESS_TERMCAP;
|
home.file.".LESS_TERMCAP".source = ./LESS_TERMCAP;
|
||||||
services.syncthing.enable = true;
|
services.syncthing.enable = true;
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
## name: Gruvbox Dark Soft
|
||||||
|
## author: Pavel Pertsev
|
||||||
|
## license: MIT/X11
|
||||||
|
## upstream: https://raw.githubusercontent.com/gruvbox-community/gruvbox-contrib/master/kitty/gruvbox-dark-soft.conf
|
||||||
|
|
||||||
|
|
||||||
|
selection_foreground #ebdbb2
|
||||||
|
selection_background #d65d0e
|
||||||
|
|
||||||
|
background #32302f
|
||||||
|
foreground #ebdbb2
|
||||||
|
|
||||||
|
color0 #3c3836
|
||||||
|
color1 #cc241d
|
||||||
|
color2 #98971a
|
||||||
|
color3 #d79921
|
||||||
|
color4 #458588
|
||||||
|
color5 #b16286
|
||||||
|
color6 #689d6a
|
||||||
|
color7 #a89984
|
||||||
|
color8 #928374
|
||||||
|
color9 #fb4934
|
||||||
|
color10 #b8bb26
|
||||||
|
color11 #fabd2f
|
||||||
|
color12 #83a598
|
||||||
|
color13 #d3869b
|
||||||
|
color14 #8ec07c
|
||||||
|
color15 #fbf1c7
|
||||||
|
|
||||||
|
cursor #bdae93
|
||||||
|
cursor_text_color #665c54
|
||||||
|
|
||||||
|
url_color #458588
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue