diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2020-02-16 17:24:28 +0000 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2020-02-16 17:24:28 +0000 |
| commit | 98a4ed007031cf890f214ac7f8c2e74eafa8947b (patch) | |
| tree | 76906a3d28b45cb8c68ef5a23274602021ba299a /nvim | |
| parent | f8932b4409aa751001d71e1160823f89778a5581 (diff) | |
Add nvim configuration
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..7462581 --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,9 @@ +call plug#begin(stdpath('data') . '/plugged') + Plug 'fatih/vim-go' +call plug#end() + +set expandtab +set shiftwidth=2 +set tabstop=2 + +autocmd FileType go setl noet |
