From 29cc26a81763e72d639af9aa387b5320127c8dd5 Mon Sep 17 00:00:00 2001 From: hgn Date: Wed, 29 Dec 2021 11:59:52 +0000 Subject: [PATCH] nvim --- init.vim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 init.vim diff --git a/init.vim b/init.vim new file mode 100644 index 0000000..092a429 --- /dev/null +++ b/init.vim @@ -0,0 +1,14 @@ +:set number +:set autoindent +:set tabstop=3 +:set shiftwidth=3 +:set smarttab +:set softtabstop=3 +:set mouse=a + +call plug#begin() + +Plug 'https://github.com/preservim/nerdtree' " NerdTree +Plug 'https://github.com/neoclide/coc.nvim' " Auto Completion + +call plug#end() -- 2.25.1