Skip to content

Instantly share code, notes, and snippets.

@nathancyam
Created November 26, 2019 05:39
Show Gist options
  • Save nathancyam/76f787e741ac20ecab05372e93281bdd to your computer and use it in GitHub Desktop.
Save nathancyam/76f787e741ac20ecab05372e93281bdd to your computer and use it in GitHub Desktop.
Neovim setup
call plug#begin('~/.config/nvim/plugged')
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'ycm-core/YouCompleteMe', { 'do': './install.py' }
Plug 'slashmili/alchemist.vim'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'elixir-editors/vim-elixir'
Plug 'itchyny/lightline.vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
call plug#end()
set termguicolors
set number
set background=dark
syntax on
map <C-n> :NERDTreeToggle<CR>
map ; :Files<CR>
highlight SignColumn guibg=#272822
let g:rehash256 = 1
let NERDTreeIgnore = ['_site', '_build']
let g:molokai_original=1
let g:solarized_termcolors=256
colorscheme molokai256
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment