mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-30 22:59:22 +02:00
updates
This commit is contained in:
parent
6c31df4ae6
commit
7da8f32a95
4 changed files with 10 additions and 3 deletions
|
@ -45,6 +45,7 @@ $HOME/.config/nvim/lua/nv-vscode/init.vim
|
||||||
**HIGH PRIORITY**
|
**HIGH PRIORITY**
|
||||||
- formatting using efm server for python
|
- formatting using efm server for python
|
||||||
- formatting using efm server for prettier/eslint
|
- 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
|
- wrap all whichkey lsp in functions
|
||||||
- snippet support
|
- snippet support
|
||||||
|
|
||||||
|
@ -53,7 +54,6 @@ $HOME/.config/nvim/lua/nv-vscode/init.vim
|
||||||
- make java code actions prettier
|
- make java code actions prettier
|
||||||
- figure out how to format java
|
- figure out how to format java
|
||||||
- setup junit tests for java
|
- setup junit tests for java
|
||||||
- add git signs to whichkey (This will require wrapping in Lua commands)
|
|
||||||
- add lots of lsp
|
- add lots of lsp
|
||||||
- configure illuminate according to readme
|
- configure illuminate according to readme
|
||||||
- neovim lightbulb config
|
- neovim lightbulb config
|
||||||
|
|
2
init.lua
2
init.lua
|
@ -19,6 +19,7 @@ else
|
||||||
require('nv-quickscope')
|
require('nv-quickscope')
|
||||||
require('nv-gitsigns')
|
require('nv-gitsigns')
|
||||||
require('nv-nvim-autopairs')
|
require('nv-nvim-autopairs')
|
||||||
|
require('nv-illuminate')
|
||||||
require('nv-neogit')
|
require('nv-neogit')
|
||||||
require('nv-comment')
|
require('nv-comment')
|
||||||
require('nv-rnvimr')
|
require('nv-rnvimr')
|
||||||
|
@ -40,7 +41,6 @@ else
|
||||||
require('lsp.lua-ls')
|
require('lsp.lua-ls')
|
||||||
require('lsp.bash-ls')
|
require('lsp.bash-ls')
|
||||||
require('lsp.js-ts-ls')
|
require('lsp.js-ts-ls')
|
||||||
-- require('lsp.java-ls')
|
|
||||||
require('lsp.python-ls')
|
require('lsp.python-ls')
|
||||||
require('lsp.json-ls')
|
require('lsp.json-ls')
|
||||||
require('lsp.yaml-ls')
|
require('lsp.yaml-ls')
|
||||||
|
|
2
lua/nv-illuminate/init.lua
Normal file
2
lua/nv-illuminate/init.lua
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
vim.g.Illuminate_ftblacklist = {'NvimTree'}
|
||||||
|
|
|
@ -11,6 +11,11 @@ require'nvim-treesitter.configs'.setup {
|
||||||
},
|
},
|
||||||
rainbow = {
|
rainbow = {
|
||||||
enable = false
|
enable = false
|
||||||
|
},
|
||||||
|
refactor = {
|
||||||
|
highlight_definitions = {
|
||||||
|
enable = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue