From b5b41624af38ec83a52a8349c87ca3b297790cef Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Sat, 30 Jul 2022 15:28:00 -0400 Subject: [PATCH] Allow project specifics --- init.vim | 2 ++ plug.vim | 2 ++ 2 files changed, 4 insertions(+) diff --git a/init.vim b/init.vim index 3f8e184..1f7b0c8 100644 --- a/init.vim +++ b/init.vim @@ -122,7 +122,9 @@ noremap :call AdjustFontSize(-1) inoremap :call AdjustFontSize(1)a inoremap :call AdjustFontSize(-1)a + lua << EOF + require('nvim-projectconfig').setup({autocmd=true}) require("trouble").setup { -- your configuration comes here -- or leave it empty to use the default settings diff --git a/plug.vim b/plug.vim index cb4f95c..fa49694 100644 --- a/plug.vim +++ b/plug.vim @@ -59,6 +59,8 @@ Plug 'editorconfig/editorconfig-vim' Plug 'scrooloose/syntastic' " auto format all the things Plug 'sbdchd/neoformat' +" load config from $CWD/.config/init.vim +Plug 'windwp/nvim-projectconfig' " Collection of common configurations for the Nvim LSP client Plug 'neovim/nvim-lspconfig'