Skip to content

Instantly share code, notes, and snippets.

@0x277F
Created April 5, 2017 22:02
Show Gist options
  • Save 0x277F/ead4fed8a4c88281a7e89b7298a5cee9 to your computer and use it in GitHub Desktop.
Save 0x277F/ead4fed8a4c88281a7e89b7298a5cee9 to your computer and use it in GitHub Desktop.
My NeoVim configuration
if &compatible
set nocompatible
endif
set runtimepath+=~/AppData/Local/nvim/bundle/repos/github.com/Shougo/dein.vim
if dein#load_state(expand('~/AppData/Local/nvim/bundle'))
call dein#begin(expand('~/AppData/Local/nvim/bundle'))
call dein#add('Shougo/dein.vim')
call dein#add('Shougo/neocomplete.vim')
call dein#add('0x277F/onedark.vim')
call dein#add('itchyny/lightline.vim')
call dein#add('sheerun/vim-polyglot')
call dein#add('vim-syntastic/syntastic')
call dein#add('PProvost/vim-ps1')
call dein#add('ap/vim-css-color')
call dein#add('jiangmiao/auto-pairs')
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
set tabstop=4
set shiftwidth=4
set expandtab
set number
syntax enable
colorscheme onedark
let g:lightline = {'colorscheme': 'onedark'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment