Skip to content

Instantly share code, notes, and snippets.

@ipleten
Created July 4, 2017 14:32
Show Gist options
  • Save ipleten/3fb86c5bc2a409e5e6ae77bb747aa4c8 to your computer and use it in GitHub Desktop.
Save ipleten/3fb86c5bc2a409e5e6ae77bb747aa4c8 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible
set number
set ruler
syntax on
" Set encoding
set encoding=utf-8
" Whitespace stuff
set nowrap
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set list listchars=tab:\ \ ,trail:·
" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase
" Set fold
"set foldmethod=syntax
"set foldlevelstart=20
" Highlight lines longer 80 syms
"highlight OverLength ctermbg=darkred ctermfg=white guibg=#ffffff
"match OverLength /\%>80v.\+/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment