Adjust misc settings in plugins
This commit is contained in:
@ -28,7 +28,7 @@ return {
|
||||
'html',
|
||||
'cssls',
|
||||
'pyright',
|
||||
'emmet_ls',
|
||||
-- 'emmet_ls',
|
||||
'bashls',
|
||||
},
|
||||
})
|
||||
@ -39,7 +39,7 @@ return {
|
||||
'isort',
|
||||
'black',
|
||||
'pylint',
|
||||
'eslint_d',
|
||||
-- 'eslint_d',
|
||||
}
|
||||
})
|
||||
end,
|
||||
|
||||
@ -14,7 +14,7 @@ return {
|
||||
null_ls.builtins.formatting.djlint,
|
||||
null_ls.builtins.formatting.isort,
|
||||
null_ls.builtins.formatting.stylua,
|
||||
require('none-ls.diagnostics.eslint_d'),
|
||||
-- require('none-ls.diagnostics.eslint_d'),
|
||||
}
|
||||
|
||||
null_ls.setup({
|
||||
|
||||
@ -10,7 +10,11 @@ return {
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
nvim_tree.setup()
|
||||
nvim_tree.setup({
|
||||
filters = {
|
||||
custom = { 'node_modules', '__pycache__' },
|
||||
},
|
||||
})
|
||||
|
||||
local keymap = vim.keymap
|
||||
keymap.set('n', '<leader>ee', api.tree.toggle, { noremap = true, silent = true })
|
||||
|
||||
5
nvim/lua/config/plugins/todo-comments.lua
Normal file
5
nvim/lua/config/plugins/todo-comments.lua
Normal file
@ -0,0 +1,5 @@
|
||||
return {
|
||||
'folke/todo-comments.nvim',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
opts = {},
|
||||
}
|
||||
Reference in New Issue
Block a user