Created
February 28, 2019 05:18
-
-
Save mkakh/f7095e4f1840dae91f9d9513fe6c8e02 to your computer and use it in GitHub Desktop.
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 | |
| "" UTF-8 | |
| set encoding=utf-8 | |
| set fileencoding=utf-8 | |
| set fileencodings=utf-8 | |
| "" SYNTAX | |
| syntax enable | |
| filetype indent on | |
| "" TAB | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set expandtab | |
| set smarttab | |
| "" SEARCH | |
| set ignorecase | |
| set smartcase | |
| set incsearch | |
| set hlsearch | |
| "" PARENTHESIS | |
| set showmatch | |
| "" FOLD | |
| set foldenable | |
| set foldlevelstart=10 | |
| set foldnestmax=10 | |
| "" SPLIT | |
| set splitright | |
| "" OTHERS | |
| set list | |
| "set number | |
| "set ruler | |
| set showcmd | |
| set cursorline | |
| set wildmenu | |
| set lazyredraw | |
| colorscheme badwolf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment