Allow project specifics

This commit is contained in:
Thomas Gideon 2022-07-30 15:28:00 -04:00
parent c8d7834f22
commit b5b41624af
2 changed files with 4 additions and 0 deletions

View File

@ -122,7 +122,9 @@ noremap <C-Down> :call AdjustFontSize(-1)<CR>
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
inoremap <C-Down> <Esc>:call AdjustFontSize(-1)<CR>a inoremap <C-Down> <Esc>:call AdjustFontSize(-1)<CR>a
lua << EOF lua << EOF
require('nvim-projectconfig').setup({autocmd=true})
require("trouble").setup { require("trouble").setup {
-- your configuration comes here -- your configuration comes here
-- or leave it empty to use the default settings -- or leave it empty to use the default settings

View File

@ -59,6 +59,8 @@ Plug 'editorconfig/editorconfig-vim'
Plug 'scrooloose/syntastic' Plug 'scrooloose/syntastic'
" auto format all the things " auto format all the things
Plug 'sbdchd/neoformat' Plug 'sbdchd/neoformat'
" load config from $CWD/.config/init.vim
Plug 'windwp/nvim-projectconfig'
" Collection of common configurations for the Nvim LSP client " Collection of common configurations for the Nvim LSP client
Plug 'neovim/nvim-lspconfig' Plug 'neovim/nvim-lspconfig'