Skip to content

Instantly share code, notes, and snippets.

@mxwell
Last active January 5, 2020 02:58
Show Gist options
  • Save mxwell/4246595 to your computer and use it in GitHub Desktop.
Save mxwell/4246595 to your computer and use it in GitHub Desktop.
Vim config
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