Compare commits

...

2 Commits

Author SHA1 Message Date
3711b25225
Change terminal font to Iosevka Term 2019-11-25 01:11:52 +01:00
f56fdb28d0
Fix vim colorscheme inside tmux 2019-11-25 00:44:30 +01:00
3 changed files with 9 additions and 7 deletions

View File

@ -6,10 +6,10 @@
#: individual font faces and even specify special fonts for particular #: individual font faces and even specify special fonts for particular
#: characters. #: characters.
font_family Termsyn Regular font_family Iosevka Term
bold_font Termsyn Bold bold_font Iosevka Term Bold
italic_font auto italic_font Iosevka Term Italic
bold_italic_font auto bold_italic_font Iosevka Term Bold Italic
#: You can specify different fonts for the bold/italic/bold-italic #: You can specify different fonts for the bold/italic/bold-italic
#: variants. To get a full list of supported fonts use the `kitty #: variants. To get a full list of supported fonts use the `kitty
@ -230,7 +230,7 @@ pointer_shape_when_grabbed arrow
#: Performance tuning {{{ #: Performance tuning {{{
repaint_delay 10 repaint_delay 30
#: Delay (in milliseconds) between screen updates. Decreasing it, #: Delay (in milliseconds) between screen updates. Decreasing it,
#: increases frames-per-second (FPS) at the cost of more CPU usage. #: increases frames-per-second (FPS) at the cost of more CPU usage.

View File

@ -7,7 +7,7 @@ bind C-x send-prefix
set -g bell-action any set -g bell-action any
## Set default terminal ## Set default terminal
set -g default-terminal "xterm-kitty" set -g default-terminal "screen-256color"
set -ga terminal-overrides ",xterm-kitty:Tc" set -ga terminal-overrides ",xterm-kitty:Tc"
# i3 split bindings # i3 split bindings

View File

@ -41,8 +41,10 @@ Plug 'cocopon/iceberg.vim'
call plug#end() call plug#end()
""Colors ""Colors
colorscheme iceberg colorscheme iceberg
"set t_Co=256
set termguicolors set termguicolors
""Sets the colorscheme in tmux
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
""Quitting whether Goyo is active or not ""Quitting whether Goyo is active or not
function! g:Goyo_before() function! g:Goyo_before()
let b:quitting = 0 let b:quitting = 0