Introducing (n)vim files

This commit is contained in:
Nathan Schneider
2024-12-30 17:40:32 -05:00
parent 01907ed38e
commit d1f3961632
6 changed files with 108 additions and 16 deletions
+24
View File
@@ -0,0 +1,24 @@
" ntnsndr's vimrc file
" Basics
syntax on
set noerrorbells
set tabstop=4 softtabstop=4
set linebreak
set wrap
nnoremap <F5> :set linebreak<CR>
nnoremap <C-F5> :set nolinebreak<CR>
set incsearch
set spell
" Workspace location
let g:workspace_session_directory = $HOME . '/.vim/sessions/'
" Plugins
call plug#begin()
"Plug 'plasticboy/vim-markdown'
Plug 'junegunn/goyo.vim'
Plug 'reedes/vim-pencil'
Plug 'vim-pandoc/vim-pandoc'
"Plug 'vim-pandoc/vim-pandoc-syntax'
call plug#end()