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

View File

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