tmux and vimrc

This commit is contained in:
Christoph J. Scherr 2024-04-06 17:18:27 +02:00
parent 817dfea3e3
commit e4c2aca87c
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 2 additions and 1 deletions

View File

@ -142,4 +142,3 @@ set-window-option -g clock-mode-colour green #green
# bell # bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red set-window-option -g window-status-bell-style fg=black,bg=red #base02, red

2
.vimrc
View File

@ -1,4 +1,5 @@
" GENERAL CONFIGS ---------------------------------------------------------------------------------- " GENERAL CONFIGS ----------------------------------------------------------------------------------
colorscheme slate " use a less ugly colorscheme
syntax on " syntax highlighting syntax on " syntax highlighting
set nocompatible " disable compatibility to old-time vi set nocompatible " disable compatibility to old-time vi
set number set number
@ -23,6 +24,7 @@ set numberwidth=4 " How much space the line numbers should take
set signcolumn=yes " Show extra icons in the line numbers (like git marks, errors) set signcolumn=yes " Show extra icons in the line numbers (like git marks, errors)
set timeout timeoutlen=400 " How long to wait for non prefix free hotkey melodies set timeout timeoutlen=400 " How long to wait for non prefix free hotkey melodies
set ttimeoutlen=0 set ttimeoutlen=0
set nowrap
" Avoid showing message extra message when using completion " Avoid showing message extra message when using completion
set shortmess+=c set shortmess+=c