More clean up. fixed wrong spell dict being called.

This commit is contained in:
Russell Riker 2020-09-07 15:25:47 -04:00
parent c5ae36f0e9
commit b01b99a6dd
1 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@ set expandtab
set number
" turn spelling on for text based documents
autocmd FileType tex,latex,markdown setlocal spell spelllang=en_au
autocmd FileType tex,latex,markdown setlocal spell spelllang=en_us
" ***********************************************************
" ********************* install pluggins ********************
@ -22,17 +22,17 @@ autocmd FileType tex,latex,markdown setlocal spell spelllang=en_au
call plug#begin('~/.vim/plugged')
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'preservim/nerdtree'
Plug 'preservim/nerdtree' " file manager
Plug 'roxma/nvim-yarp'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-fugitive' " git
Plug 'tpope/vim-rhubarb'
Plug 'vim-airline/vim-airline'
Plug 'airblade/vim-gitgutter' " git changes
Plug 'vim-airline/vim-airline-themes'
Plug 'vim-airline/vim-airline' " cool status bar
Plug 'airblade/vim-gitgutter' " git changes
Plug 'vim-airline/vim-airline-themes' " themes for status bar
Plug 'itchyny/lightline.vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " golang
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " fuzzy finder
Plug 'junegunn/fzf.vim' " fuzzy finder
Plug 'airblade/vim-rooter'
call plug#end()