Skip to content

Instantly share code, notes, and snippets.

@mafikes
Last active January 29, 2021 13:02
Show Gist options
  • Save mafikes/8367100 to your computer and use it in GitHub Desktop.
Save mafikes/8367100 to your computer and use it in GitHub Desktop.
Config Vim
" File: ~/.vimrc
" Set to auto read when a file is changed from the outside
set autoread
" Set 7 lines to the cursor - when moving vertically using j/k
set so=7
"Always show current position
set ruler
" Enable syntax highlighting
syntax enable
" Set line numbers
set number
" Set background
colorscheme desert
set background=dark
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
" Use spaces instead of tabs
set expandtab
" Be smart when using tabs ;)
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
" Macbook backscape for remove not work -> with this work!
set backspace=start,eol,indent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment