Last active
February 5, 2022 20:57
-
-
Save andresanches/bc74e5fc20529ccdd5d30589c1d5bb67 to your computer and use it in GitHub Desktop.
Default settings for vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nu | |
set softtabstop=2 | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set ignorecase | |
set hlsearch | |
set showtabline=2 | |
set smartindent | |
syntax on | |
map <C-t><up> :tabr<cr> | |
map <C-t><down> :tabl<cr> | |
map <C-t><left> :tabp<cr> | |
map <C-t><right> :tabn<cr> | |
au BufReadPost .bash_alias set syntax=bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment