diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-12-14 12:29:08 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-12-14 12:29:08 +0000 |
| commit | 4178710763ab0b05e690b26be6b8cefd0c86a1c2 (patch) | |
| tree | 7ebcaba296a253cdde73b04a65bdaf95651ccb9a /nvim | |
Initial commit
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..d21d51e --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,12 @@ +set runtimepath^=~/.vim runtimepath+=~/.vim/after +let &packpath = &runtimepath +source ~/.vimrc + +call plug#begin('~/.vim/plugged') + +Plug 'vim-airline/vim-airline' +Plug 'mfussenegger/nvim-lint' +Plug 'airblade/vim-gitgutter' + +call plug#end() + |
