kitty, xresources: fix hotkeys, add some options; bashrc: fix vim func
This commit is contained in:
parent
7268343fd9
commit
0b0623fe46
3 changed files with 16 additions and 7 deletions
3
bashrc
3
bashrc
|
@ -58,8 +58,7 @@ atmux() { tmux attach; }
|
|||
sush() { command sudo -Es; }
|
||||
|
||||
# vim
|
||||
vi() { $(whence nvim || whence vim || return 1) "$@"; }
|
||||
vim() { vi "$@"; }
|
||||
vi() { command vim "$@"; }
|
||||
|
||||
# termcompat
|
||||
s() { "$(command -v termcompat||return 0)" ssh "$@"; }
|
||||
|
|
18
kitty.conf
18
kitty.conf
|
@ -1,19 +1,27 @@
|
|||
# I am config
|
||||
font_family JetBrains Mono
|
||||
font_size 10
|
||||
font_family Fantasque Sans Mono
|
||||
font_size 14
|
||||
box_drawing_scale 0.1, 0.5, 1, 1.5
|
||||
|
||||
cursor_blink_interval 0
|
||||
|
||||
disable_ligatures cursor
|
||||
strip_trailing_spaces always
|
||||
enable_audio_bell no
|
||||
|
||||
tab_bar_style separator
|
||||
|
||||
wayland_titlebar_color #2f343f
|
||||
window_padding_width 1
|
||||
placement_strategy top-left
|
||||
|
||||
tab_bar_style powerline
|
||||
remember_window_size no
|
||||
initial_window_width 120c
|
||||
initial_window_height 30c
|
||||
|
||||
rectangle_select_modifiers alt
|
||||
strip_trailing_spaces always
|
||||
map alt+c copy_to_clipboard
|
||||
map ctrl+alt+c copy_to_clipboard
|
||||
map alt+v paste_from_clipboard
|
||||
map ctrl+alt+v paste_from_clipboard
|
||||
|
||||
open_url_modifiers alt
|
||||
|
|
|
@ -62,7 +62,9 @@ URxvt.matcher.button: 3
|
|||
|
||||
! keymaps
|
||||
URxvt.keysym.C-V: eval:paste_clipboard
|
||||
URxvt.keysym.M-v: eval:paste_clipboard
|
||||
URxvt.keysym.C-C: eval:selection_to_clipboard
|
||||
URxvt.keysym.M-c: eval:selection_to_clipboard
|
||||
|
||||
! colors
|
||||
URxvt.foreground: COLORFG
|
||||
|
|
Loading…
Reference in a new issue