Skip to content

Instantly share code, notes, and snippets.

@andresanches
Last active February 5, 2022 20:57
Show Gist options
  • Save andresanches/bc74e5fc20529ccdd5d30589c1d5bb67 to your computer and use it in GitHub Desktop.
Save andresanches/bc74e5fc20529ccdd5d30589c1d5bb67 to your computer and use it in GitHub Desktop.
Default settings for vim
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