summaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2020-02-13 20:04:21 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2020-02-13 20:04:21 -0700
commita7870c745f9ff4c7f0d1466370c7decbc267a784 (patch)
treea0ff220932b43d7fa6b7763df7cba2463880434c /.config/nvim
parent31f29595c69d6da113025b734e4d580533ec8144 (diff)
Add plugins to nvim, and troubleshoot udiskie
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/init.vim10
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 7aea348..23a592f 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -15,9 +15,9 @@
""---Loads plugins---""
call plug#begin('~/.config/nvim/plugged')
Plug 'mboughaba/i3config.vim'
-
- " Goyo
Plug 'junegunn/goyo.vim'
+ Plug 'preservim/nerdtree'
+ Plug 'Xuyuanp/nerdtree-git-plugin'
call plug#end()
"" Commands for plug.
" PlugInstall [name ...] [#threads] Install plugins
@@ -29,11 +29,11 @@ call plug#end()
" PlugSnapshot[!] [output path] Generate script for restoring the current snapshot of the plugins
""---Basic configuration---""
-" Enable syntax highlighting.
syntax on
-
-" Show line numbers and use relativenumber.
set number relativenumber
+set clipboard+=unnamedplus
+" set bg=light
+
" Set 1 tab = 4 spaces.
set ts=4 sw=4