projects
/
misc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48f6617
)
nvim
author
hgn
<hgodden00@gmail.com>
Wed, 29 Dec 2021 11:59:52 +0000
(11:59 +0000)
committer
hgn
<hgodden00@gmail.com>
Wed, 29 Dec 2021 11:59:52 +0000
(11:59 +0000)
init.vim
[new file with mode: 0644]
patch
|
blob
diff --git a/init.vim
b/init.vim
new file mode 100644
(file)
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()