diff options
Diffstat (limited to 'cfg')
| -rw-r--r-- | cfg/.vimrc | 2 | ||||
| -rw-r--r-- | cfg/kitty.conf | 10 |
2 files changed, 10 insertions, 2 deletions
@@ -58,6 +58,8 @@ let mapleader = "," " -------- 'c --------- command! Src source ~/.vimrc command! Vimrc edit ~/.vimrc +command! Make !make +command! Run !make run " the coolest regex-es you'll see (fake as fuck) command! RmComments %s/\s*\/\/\s*.*// " -------- 'C --------- diff --git a/cfg/kitty.conf b/cfg/kitty.conf index 48fa4e9..274afbb 100644 --- a/cfg/kitty.conf +++ b/cfg/kitty.conf @@ -1,4 +1,9 @@ # font stuff +# stuff for azuki_font to display decently { +#font_family azuki_font +#modify_font cell_width 42% +#font_size 14 +# } font_family Iosevka font_size 12 enable_ligatures always @@ -7,7 +12,7 @@ bold_font auto italic_font auto bold_italic_font auto # customization (colors etc) -window_padding_width 20 +window_padding_width 32 # performance cursor_blink_interval 0 @@ -17,7 +22,7 @@ sync_to_monitor no repaint_delay 12 input_delay 3 # -background_opacity 1 +background_opacity 0.9 dynamic_background_opacity no cursor_trail 0 @@ -56,3 +61,4 @@ color7 #d0d0d0 color15 #f5f5f5 selection_background #9a0a0a selection_foreground #d0d0d0 + |