Allow project specifics
This commit is contained in:
parent
c8d7834f22
commit
b5b41624af
2 changed files with 4 additions and 0 deletions
2
init.vim
2
init.vim
|
@ -122,7 +122,9 @@ noremap <C-Down> :call AdjustFontSize(-1)<CR>
|
|||
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
|
||||
inoremap <C-Down> <Esc>:call AdjustFontSize(-1)<CR>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
|
||||
|
|
2
plug.vim
2
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'
|
||||
|
|
Loading…
Reference in a new issue