Munging around with my vim config

This commit is contained in:
Nicole Tietz-Sokolskaya 2021-08-26 22:13:25 -04:00
parent 962e370036
commit e2320121fb
3 changed files with 9 additions and 8 deletions

View file

@ -1,5 +1,6 @@
let g:airline_theme="papercolor"
let g:airline_symbols_ascii=1
set termguicolors
set background=dark

View file

@ -11,6 +11,8 @@ map <C-n> :NERDTreeToggle<CR>
" Display buffers in the tab line
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#wordcount#enabled = 1
"let g:airline#extensions#wordcount#filetypes = ['all']
" Disable mouse input
set mouse=
@ -70,9 +72,7 @@ nmap <F8> :TagbarToggle<CR>
" Turn off polyglot for some langs so they play nice
if exists('g:loaded_polyglot')
let g:polyglot_disabled = ['go']
let g:polyglot_disabled = ['rst']
let g:polyglot_disabled = ['tla']
let g:polyglot_disabled = ['go', 'rst', 'tla']
endif
au BufRead,BufNewFile *.tla setf tla

View file

@ -1,5 +1,10 @@
call plug#begin('~/local/.shared/nvim/plugged')
" language support
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
"Plug 'neovimhaskell/haskell-vim'
Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting for many languages
" File navigation
Plug 'scrooloose/nerdtree'
@ -12,11 +17,6 @@ Plug 'airblade/vim-gitgutter' " Shows a diff in the gutter
Plug 'vim-airline/vim-airline' " Display more contextual information
Plug 'vim-airline/vim-airline-themes'
" language support
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'neovimhaskell/haskell-vim'
Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting for many languages
" vimwiki
Plug 'vimwiki/vimwiki'