Created
September 23, 2019 09:41
-
-
Save SheinH/5acaae711692321fc7ca741e7e9bb12a 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' | |
| Plug 'udalov/kotlin-vim' | |
| 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=dark | |
| 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