Skip to content

configurations

tmux.conf

set-window-option -g mode-keys vi
set-option -g repeat-time 5000

bind -r C-h select-pane -L
bind -r C-j select-pane -D 
bind -r C-k select-pane -U
bind -r C-l select-pane -R
bind -r C-s swap-pane

#set -g mouse on

vimrc

"reload with :so %

"quality of life
set nobackup
set noswapfile
set ff=unix
set autochdir

" gVim
if has("gui_running")
    language en_US.utf8
    set guioptions-=T
    set guifont=Ubuntu_Mono:h12:cANSI:qDRAFT
endif

" flavour
set nu
set cursorline
set nobackup
syntax on
set background=dark
colorscheme sorbet

" open in browser
if has("win32")
    command Browser !start "C:\Program Files\Mozilla Firefox\firefox.exe" "file://%:p"
endif

" wrap configuration
set linebreak
set nowrap

" allow deleting whitespace
set backspace=indent,eol,start

" tab to space
set shiftwidth=4 smarttab
set expandtab

crontab

@reboot find $HOME/Downloads/ -mindepth 1 -mtime +1 -delete