Last active
February 7, 2019 21:58
-
-
Save SheinH/c4df23f09c2b3b9ff2427eeb6a4116a1 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
| call plug#begin('~/.vim/plugged') | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'yonchu/accelerated-smooth-scroll' | |
| Plug 'easymotion/vim-easymotion' | |
| Plug 'rstacruz/vim-closer' | |
| call plug#end() | |
| map <Leader> <Plug>(easymotion-prefix) | |
| let g:airline_powerline_fonts = 1 | |
| syntax on | |
| set noshowmode | |
| set tabstop=4 shiftwidth=4 softtabstop=4 noexpandtab | |
| set autoindent | |
| set background=light | |
| filetype plugin indent on | |
| set backspace=indent,eol,start | |
| set hid | |
| set incsearch | |
| set wildmenu | |
| set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment