This commit is contained in:
Nicole Tietz-Sokolskaya 2023-04-05 12:13:16 -04:00
parent b793dfcdf0
commit dc7e15ec4c
3 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,3 @@
set termguicolors set termguicolors
set background=light set background=light
colorscheme rakr colorscheme one

View File

@ -11,7 +11,7 @@ syntax on
filetype plugin indent on filetype plugin indent on
" Nice navigaton shortcuts " Nice navigaton shortcuts
map <C-n> :NERDTreeToggle<CR> map <C-n> :NERDTreeToggle<CR>:resize<CR>
map <C-f> :Files<CR> map <C-f> :Files<CR>
map <C-g> :Rg<CR> map <C-g> :Rg<CR>
@ -26,8 +26,6 @@ set hlsearch
" Make pretty reasonable wrapping " Make pretty reasonable wrapping
set nowrap set nowrap
set linebreak " wraps at work boundaries set linebreak " wraps at work boundaries
autocmd FileType markdown set wrap spell
autocmd FileType tex set wrap spell
" If files are modified just reopen them " If files are modified just reopen them
set autoread set autoread

View File

@ -44,10 +44,12 @@ Plug 'simrat39/rust-tools.nvim'
Plug 'neovim/nvim-lspconfig' Plug 'neovim/nvim-lspconfig'
Plug 'nvim-lua/plenary.nvim' Plug 'nvim-lua/plenary.nvim'
" Coq support
Plug 'whonore/Coqtail'
" Nice hovers " Nice hovers
Plug 'stevearc/dressing.nvim' Plug 'stevearc/dressing.nvim'
" Our new AI overlords 🤖
Plug 'github/copilot.vim', { 'branch': 'release' }
" Uncomment this line to disable copilot
"let g:copilot_enabled = 0
call plug#end() call plug#end()