Created
July 4, 2017 14:32
-
-
Save ipleten/3fb86c5bc2a409e5e6ae77bb747aa4c8 to your computer and use it in GitHub Desktop.
.vimrc
This file contains hidden or 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 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