summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
diff options
context:
space:
mode:
authorPaul Iannetta <paul.iannetta@inria.fr>2018-11-19 00:49:21 +0100
committerPaul Iannetta <paul.iannetta@inria.fr>2018-11-19 00:49:21 +0100
commit52967fde6b3424372a5d4790e6c5c21dc3096913 (patch)
treee15b4d6041b95de2c625f3498fbd0a00f8d0e5a2 /.config/nvim/init.vim
vim dot files
Diffstat (limited to '.config/nvim/init.vim')
-rwxr-xr-x.config/nvim/init.vim63
1 files changed, 63 insertions, 0 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
new file mode 100755
index 0000000..5670ffe
--- /dev/null
+++ b/.config/nvim/init.vim
@@ -0,0 +1,63 @@
+" Scripts-----------------------------
+" Required:
+set runtimepath+=/home/paul/.local/share/dein/repos/github.com/Shougo/dein.vim
+
+" Required:
+if dein#load_state('/home/paul/.local/share/dein')
+ call dein#begin('/home/paul/.local/share/dein')
+
+ " Let dein manage dein
+ " Required:
+ call dein#add('/home/paul/.local/share/dein/repos/github.com/Shougo/dein.vim')
+
+ " Add or remove your plugins here:
+ " After removing a plugin you should call:
+ " call map(dein#check_clean(), "delete(v:val, 'rf')")
+
+ call dein#add('Shougo/neosnippet.vim')
+ call dein#add('Shougo/neosnippet-snippets')
+ call dein#add('Shougo/denite.nvim')
+
+ call dein#add('Shougo/defx.nvim')
+
+ call dein#add('vim-airline/vim-airline')
+ call dein#add('vim-airline/vim-airline-themes')
+
+ call dein#add('tpope/vim-fugitive')
+
+ call dein#add('srcery-colors/srcery-vim')
+
+ " Required:
+ call dein#end()
+ call dein#save_state()
+endif
+
+" Required:
+filetype plugin indent on
+syntax enable
+
+" If you want to install not installed plugins on startup.
+"if dein#check_install()
+" call dein#install()
+"endif
+
+"End dein Scripts-------------------------
+
+set expandtab
+set tabstop=2
+set tw=80
+set shiftwidth=2
+set t_Co=256
+colorscheme srcery
+
+let g:airline#extensions#tabline#enabled = 1
+let g:airline_powerline_fonts = 1
+
+set list
+set showbreak=↪\
+set listchars=tab:→\ ,nbsp:␣,trail:•,extends:⟩,precedes:⟨
+set fillchars=fold:\
+"let g:deoplete#enable_at_startup = 1
+
+inoremap ;; <esc>
+