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
" Sets how many lines of history VIM har to remember | |
set history=5000 | |
" Use UTF-8 without BOM | |
set encoding=utf8 nobomb | |
set modeline | |
" Enable filetype plugin | |
set completeopt=longest,menu |
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
" vim script | |
compare two strings | |
==? case-insensitive | |
==# case-sensitive | |
no matter what the user has set |