diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-03-27 17:25:15 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-03-27 17:25:15 +0200 |
| commit | bc14658651f48cec4909f45319636ceb2207360f (patch) | |
| tree | 2feef17e29491bdc6b60ae681a4c9ab6b6b80388 /nvim/plugins.vim | |
| parent | 402c3b6b9eb22f34eefc8274a10cc64a9b6db776 (diff) | |
| download | dotfiles-bc14658651f48cec4909f45319636ceb2207360f.tar.gz dotfiles-bc14658651f48cec4909f45319636ceb2207360f.tar.bz2 dotfiles-bc14658651f48cec4909f45319636ceb2207360f.zip | |
Plugins für Neovim
Diffstat (limited to 'nvim/plugins.vim')
| -rw-r--r-- | nvim/plugins.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim new file mode 100644 index 0000000..e1f699a --- /dev/null +++ b/nvim/plugins.vim | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | " nvim/plugins.vim | ||
| 2 | |||
| 3 | let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim' | ||
| 4 | if empty(glob(data_dir . '/autoload/plug.vim')) | ||
| 5 | silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | ||
| 6 | endif | ||
| 7 | |||
| 8 | call plug#begin() | ||
| 9 | Plug 'romainl/vim-cool' | ||
| 10 | Plug 'tpope/vim-surround' | ||
| 11 | call plug#end() | ||
| 12 | |||
