diff options
| -rw-r--r-- | nvim/init.vim | 57 | 
1 files changed, 30 insertions, 27 deletions
| diff --git a/nvim/init.vim b/nvim/init.vim index 080625e..e2925cf 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -3,31 +3,34 @@ call plug#begin('~/.config/nvim/plugged')  " colorschemes {{{  Plug 'tomasiser/vim-code-dark'        " codedark color scheme  Plug 'flazz/vim-colorschemes'         " meta-color scheme package +Plug 'tomasiser/vim-code-dark'                          " codedark color scheme +Plug 'flazz/vim-colorschemes'                           " meta-color scheme package +Plug 'ZachIndigo/vim-preglow'                           " my old color scheme  " }}}  " language support {{{ -Plug 'axvr/org.vim'                   " basic org markup language implementation -Plug 'ziglang/zig.vim'                " zig programming language -Plug 'jdonaldson/vaxe'                " haxe programming language +Plug 'axvr/org.vim'                                     " basic org markup language implementation +Plug 'ziglang/zig.vim'                                  " zig programming language +Plug 'jdonaldson/vaxe'                                  " haxe programming language  Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }  " latex live preview support -Plug 'waycrate/swhkd-vim'             " swhkd syntax highlighting -Plug 'HiPhish/guile.vim'              " guile syntax highlighting +Plug 'waycrate/swhkd-vim'                               " swhkd syntax highlighting +Plug 'HiPhish/guile.vim'                                " guile syntax highlighting  " }}}  " utility {{{ -Plug 'preservim/nerdtree'             " directory tree interface -Plug 'Xuyuanp/nerdtree-git-plugin'    " git status indicator for nerdtree -Plug 'PhilRunninger/nerdtree-visual-selection' " allows visual selection mode in nerdtree -Plug 'tpope/vim-fugitive'             " git command interface -Plug 'junegunn/goyo.vim'              " simplify the user interface (distraction-free)  [BROKEN] -Plug 'junegunn/limelight.vim'         " focus on single paragraph of text at a time -Plug 'vim-airline/vim-airline'        " powerline the vim bottom bar -Plug 'nathanaelkane/vim-indent-guides' " indent guides for vim -Plug 'mhinz/vim-signify'              " use signs to show diffs -Plug 'tpope/vim-endwise'              " auto end functions/if statements -Plug 'tpope/vim-surround'             " auto close stuff -Plug 'mattn/emmet-vim'                " html css easy formating -Plug 'godlygeek/tabular'              " Needed for vim-markdown -Plug 'plasticboy/vim-markdown'        " Better markdown support -Plug 'ryanoasis/vim-devicons' " dev icons for nerdtree +Plug 'preservim/nerdtree'                               " directory tree interface +Plug 'Xuyuanp/nerdtree-git-plugin'                      " git status indicator for nerdtree +Plug 'PhilRunninger/nerdtree-visual-selection'          " allows visual selection mode in nerdtree +Plug 'tpope/vim-fugitive'                               " git command interface +Plug 'junegunn/goyo.vim'                                " simplify the user interface (distraction-free)  [BROKEN] +Plug 'junegunn/limelight.vim'                           " focus on single paragraph of text at a time +Plug 'vim-airline/vim-airline'                          " powerline the vim bottom bar +Plug 'nathanaelkane/vim-indent-guides'                  " indent guides for vim +Plug 'mhinz/vim-signify'                                " use signs to show diffs +Plug 'tpope/vim-endwise'                                " auto end functions/if statements +Plug 'tpope/vim-surround'                               " auto close stuff +Plug 'mattn/emmet-vim'                                  " html css easy formating +Plug 'godlygeek/tabular'                                " Needed for vim-markdown +Plug 'plasticboy/vim-markdown'                          " Better markdown support +Plug 'ryanoasis/vim-devicons'                           " dev icons for nerdtree  " }}}  call plug#end() @@ -37,16 +40,16 @@ call plug#end()  "" nvimrc:  "" General -set showmatch	" Highlight matching brace +set showmatch " Highlight matching brace  set number  set relativenumber  colorscheme BlackSea -set hlsearch	" Highlight all search results -set smartcase	" Enable smart-case search -set incsearch	" Searches for strings incrementally +set hlsearch                    " Highlight all search results +set smartcase                   " Enable smart-case search +set incsearch                   " Searches for strings incrementally  set expandtab	" Use spaces instead of tabs  set shiftwidth=2	" Number of auto-indent spaces @@ -55,9 +58,9 @@ set smarttab	" Enable smart-tabs  set softtabstop=2	" Number of spaces per Tab	  "" Advanced -set ruler	" Show row and column ruler information -set undolevels=1000	" Number of undo levels -set backspace=indent,eol,start	" Backspace behaviour +set ruler                       " Show row and column ruler information +set undolevels=1000             " Number of undo levels +set backspace=indent,eol,start  " Backspace behaviour  filetype plugin indent on  "" GUI Config | 
