adding initial .tmux.conf and .vimrc

This commit is contained in:
Kashif Shah 2023-05-16 17:33:55 +00:00
parent e572702f5d
commit bddbbe82b9
2 changed files with 34 additions and 0 deletions

26
.tmux.conf Normal file
View File

@ -0,0 +1,26 @@
setw -g mouse on
set -g default-terminal "xterm-256color"
# make colors inside tmux look the same as outside of tmux
# see https://github.com/tmux/tmux/issues/696
# see https://stackoverflow.com/a/41786092
#set-option -ga terminal-overrides ",xterm-256color:Tc"
set -g history-limit 20000
set -g buffer-limit 20
set -sg escape-time 0
set -g display-time 1500
set -g remain-on-exit off
set -g repeat-time 300
# Set parent terminal title to reflect current window in tmux session
set -g set-titles on
set -g set-titles-string "#I:#W"
set -g status-right-length 70
set -g status-left-length 15
#set -g status-left "#[fg=black,bg=orange][#(uname -n)] #[default]"
set -g status-left "#[default]"

8
.vimrc Normal file
View File

@ -0,0 +1,8 @@
syntax on
syntax enable
set number
set ruler
set scrolloff=3
set background=dark
set backspace=indent,eol,start