From 3b1538f89d6e7e6676297cac66a7eeea46f15f5c Mon Sep 17 00:00:00 2001 From: Julian Teu Date: Sat, 24 Mar 2018 14:09:01 +0100 Subject: Added neovim config --- .config/nvim/init.vim | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .config/nvim/init.vim (limited to '.config') diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim new file mode 100644 index 0000000..12074af --- /dev/null +++ b/.config/nvim/init.vim @@ -0,0 +1,46 @@ + +set nocompatible " be iMproved, required +filetype off " required + +" set the runtime path to include Vundle and initialize +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +" alternatively, pass a path where Vundle should install plugins +"call vundle#begin('~/some/path/here') + +" let Vundle manage Vundle, required +Plugin 'VundleVim/Vundle.vim' + +Plugin 'tpope/vim-surround' +Plugin 'tpope/vim-repeat' +Plugin 'tpope/vim-speeddating' + +Plugin 'zchee/deoplete-jedi' + +Plugin 'sirtaj/vim-openscad' + +Plugin 'nanotech/jellybeans.vim' + +Plugin 'Shougo/deoplete.nvim' + + +call vundle#end() " required +filetype plugin indent on " required + + +colorscheme elflord + +syntax enable +set number relativenumber + +set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab + + +let g:deoplete#enable_at_startup = 1 + + +inoremap pumvisible() ? "\" : "\" +inoremap pumvisible() ? "\" : "\" + + +tnoremap -- cgit v1.2.3