Last active
January 5, 2020 02:58
-
-
Save mxwell/4246595 to your computer and use it in GitHub Desktop.
Vim config
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 number | |
set relativenumber | |
set expandtab | |
set tabstop=4 | |
set shiftwidth=4 | |
syntax on | |
set laststatus=2 | |
set hlsearch | |
" use https://github.com/junegunn/vim-plug for plugin management | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
" Plug 'udalov/kotlin-vim' | |
call plug#end() | |
" mappings | |
map <C-n> :NERDTreeToggle<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment