From a7870c745f9ff4c7f0d1466370c7decbc267a784 Mon Sep 17 00:00:00 2001 From: David Luevano <55825613+luevano@users.noreply.github.com> Date: Thu, 13 Feb 2020 20:04:21 -0700 Subject: Add plugins to nvim, and troubleshoot udiskie --- .config/nvim/init.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.config/nvim') 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 -- cgit v1.2.3-54-g00ecf