Add kitty terminal
This commit is contained in:
parent
2c53ae9476
commit
cbf6944b11
5 changed files with 1385 additions and 2 deletions
|
@ -27,6 +27,7 @@ alias grep-highlight='grep -e "^" -e'
|
||||||
|
|
||||||
alias hist-grep='history 0 | grep '
|
alias hist-grep='history 0 | grep '
|
||||||
|
|
||||||
|
alias icat="kitty +kitten icat"
|
||||||
alias ip='ip -c'
|
alias ip='ip -c'
|
||||||
|
|
||||||
alias j='jump'
|
alias j='jump'
|
||||||
|
|
|
@ -27,6 +27,9 @@ export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPAT
|
||||||
|
|
||||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||||
|
|
||||||
|
export TERMINAL="kitty"
|
||||||
|
export TERM="xterm-color"
|
||||||
|
|
||||||
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
||||||
|
|
||||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||||
|
|
63
.config/kitty/dracula.conf
Normal file
63
.config/kitty/dracula.conf
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
# https://draculatheme.com/kitty
|
||||||
|
#
|
||||||
|
# Installation instructions:
|
||||||
|
#
|
||||||
|
# cp dracula.conf ~/.config/kitty/
|
||||||
|
# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf
|
||||||
|
#
|
||||||
|
# Then reload kitty for the config to take affect.
|
||||||
|
# Alternatively copy paste below directly into kitty.conf
|
||||||
|
|
||||||
|
foreground #f8f8f2
|
||||||
|
background #22212c
|
||||||
|
selection_foreground #ffffff
|
||||||
|
selection_background #44475a
|
||||||
|
|
||||||
|
url_color #8be9fd
|
||||||
|
|
||||||
|
# black
|
||||||
|
color0 #22212c
|
||||||
|
color8 #22212c
|
||||||
|
|
||||||
|
# red
|
||||||
|
color1 #ff9580
|
||||||
|
color9 #ffaa99
|
||||||
|
|
||||||
|
# green
|
||||||
|
color2 #8aff80
|
||||||
|
color10 #a2ff99
|
||||||
|
|
||||||
|
# yellow
|
||||||
|
color3 #ffff80
|
||||||
|
color11 #ffff99
|
||||||
|
|
||||||
|
# blue
|
||||||
|
color4 #9580ff
|
||||||
|
color12 #aa99ff
|
||||||
|
|
||||||
|
# magenta
|
||||||
|
color5 #ff80bf
|
||||||
|
color13 #ff99cc
|
||||||
|
|
||||||
|
# cyan
|
||||||
|
color6 #80ffea
|
||||||
|
color14 #99ffee
|
||||||
|
|
||||||
|
# white
|
||||||
|
color7 #f8f8f2
|
||||||
|
color15 #ffffff
|
||||||
|
|
||||||
|
# Cursor colors
|
||||||
|
cursor #f8f8f2
|
||||||
|
cursor_text_color #454158
|
||||||
|
|
||||||
|
# Tab bar colors
|
||||||
|
active_tab_foreground #282a36
|
||||||
|
active_tab_background #f8f8f2
|
||||||
|
inactive_tab_foreground #282a36
|
||||||
|
inactive_tab_background #6272a4
|
||||||
|
|
||||||
|
# Marks
|
||||||
|
mark1_foreground #282a36
|
||||||
|
mark1_background #ff5555
|
||||||
|
55
|
1315
.config/kitty/kitty.conf
Normal file
1315
.config/kitty/kitty.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
# terminal emulator
|
# terminal emulator
|
||||||
super + Return
|
super + Return
|
||||||
alacritty
|
$TERMINAL
|
||||||
|
|
||||||
# program launcher
|
# program launcher
|
||||||
super + d
|
super + d
|
||||||
|
@ -67,7 +67,8 @@ super + {_,shift + }q
|
||||||
|
|
||||||
# alternate between the tiled and monocle layout
|
# alternate between the tiled and monocle layout
|
||||||
super + m
|
super + m
|
||||||
bspc desktop -l next
|
bsp-layout cycle --layouts tall,wide,grid,rgrid,monocle
|
||||||
|
#bspc desktop -l next
|
||||||
|
|
||||||
# send the newest marked node to the newest preselected node
|
# send the newest marked node to the newest preselected node
|
||||||
super + y
|
super + y
|
||||||
|
|
Loading…
Reference in a new issue