This commit is contained in:
Chris 2021-03-16 23:44:09 -04:00
parent 6c31df4ae6
commit 7da8f32a95
4 changed files with 10 additions and 3 deletions

View file

@ -45,6 +45,7 @@ $HOME/.config/nvim/lua/nv-vscode/init.vim
**HIGH PRIORITY**
- formatting using efm server for python
- formatting using efm server for prettier/eslint
- add git signs to whichkey (This will require wrapping in Lua commands)
- wrap all whichkey lsp in functions
- snippet support
@ -53,7 +54,6 @@ $HOME/.config/nvim/lua/nv-vscode/init.vim
- make java code actions prettier
- figure out how to format java
- setup junit tests for java
- add git signs to whichkey (This will require wrapping in Lua commands)
- add lots of lsp
- configure illuminate according to readme
- neovim lightbulb config

View file

@ -19,6 +19,7 @@ else
require('nv-quickscope')
require('nv-gitsigns')
require('nv-nvim-autopairs')
require('nv-illuminate')
require('nv-neogit')
require('nv-comment')
require('nv-rnvimr')
@ -40,7 +41,6 @@ else
require('lsp.lua-ls')
require('lsp.bash-ls')
require('lsp.js-ts-ls')
-- require('lsp.java-ls')
require('lsp.python-ls')
require('lsp.json-ls')
require('lsp.yaml-ls')

View file

@ -0,0 +1,2 @@
vim.g.Illuminate_ftblacklist = {'NvimTree'}

View file

@ -11,6 +11,11 @@ require'nvim-treesitter.configs'.setup {
},
rainbow = {
enable = false
}
},
refactor = {
highlight_definitions = {
enable = true
}
}
}