nvim-nim/other/nvimcfg/init.vim
2016-02-07 23:50:18 +02:00

17 lines
341 B
VimL

if has('nvim')
runtime! plugin/python_setup.vim
endif
call plug#begin('$HOME/.config/nvim/plugged')
Plug 'baabelfish/nvim-nim'
call plug#end()
filetype plugin indent on
if has("multi_byte") && has("starting")
if &termencoding == ""
let &termencoding = &encoding
endif
setglobal fileencoding=utf-8
scriptencoding utf-8
endif