From c26581534eb19178f697c47541ba6d127ecc93db Mon Sep 17 00:00:00 2001 From: Tobias Maier Date: Wed, 10 Aug 2022 09:18:59 +0200 Subject: [PATCH] added nvim config --- nvim/init.vim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nvim/init.vim diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..23334dc --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,14 @@ +" Plugins will be downloaded under the specified directory. +call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged') + +" Declare the list of plugins. +Plug 'tpope/vim-sensible' +Plug 'https://github.com/hashivim/vim-terraform.git' +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' +Plug 'https://tpope.io/vim/fugitive.git' + +" List ends here. Plugins become visible to Vim after this call. +call plug#end() +set mouse=nvi +let g:airline_powerline_fonts = 1