diff options
Diffstat (limited to '.vimrc')
-rwxr-xr-x | .vimrc | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +syntax on +set background=dark +colorscheme cyberpunk + +" Your usual config below +set number +set expandtab +set shiftwidth=4 +set tabstop=4 +set softtabstop=4 +set autoindent +set smartindent +set scrolloff=999 +set mouse=a + +if &term =~ 'tmux\|xterm\|konsole' + " Map HOME key to move to beginning of line in normal mode + noremap <Esc>[1~ 0 + noremap <Esc>[H 0 + noremap <Esc>OH 0 +endif + + +if has('termguicolors') + set termguicolors +endif |