Skip to content

Instantly share code, notes, and snippets.

@tani
Last active October 19, 2017 04:00
Show Gist options
  • Save tani/a1c83f44774f8b0accb5ead155ec12bf to your computer and use it in GitHub Desktop.
Save tani/a1c83f44774f8b0accb5ead155ec12bf to your computer and use it in GitHub Desktop.
save to ~/.config/nvim/init.vim
set number
set title
set ambiwidth=double
set tabstop=4
set expandtab
set shiftwidth=4
set smartindent
set list
set listchars=tab:»-,trail:-,eol:↲,extends:»,precedes:«,nbsp:%
set whichwrap=b,s,[,],<,>
set backspace=indent,eol,start
call plug#begin('~/.vim/plugged')
Plug 'vim-scripts/Align'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'itchyny/lightline.vim'
Plug 'thinca/vim-quickrun'
"Color Scheme
Plug 'nanotech/jellybeans.vim'
Plug 'Marfisc/vorange'
"YAML
Plug 'stephpy/vim-yaml'
"C++
Plug 'octol/vim-cpp-enhanced-highlight'
"Scala
Plug 'derekwyatt/vim-scala'
"HTML
Plug 'slim-template/vim-slim'
Plug 'mattn/emmet-vim'
Plug 'nicklasos/vim-jsx-riot'
"JavaScript
Plug 'othree/yajs.vim'
Plug 'leafgarland/typescript-vim'
Plug 'kchmck/vim-coffee-script'
"snipMate
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
call plug#end()
colorscheme vorange
let g:deoplete#enable_at_startup = 1
inoremap { {}<Left>
inoremap ( ()<Left>
inoremap [ []<Left>
inoremap \" \"\"<Left>
inoremap ' ''<Left>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment