Adjust misc settings in plugins
This commit is contained in:
1
nvim/after/ftplugin/typescript.lua
Normal file
1
nvim/after/ftplugin/typescript.lua
Normal file
@ -0,0 +1 @@
|
||||
vim.opt_local.shiftwidth = 4
|
||||
@ -32,6 +32,7 @@
|
||||
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
||||
"telescope-fzf-native.nvim": { "branch": "main", "commit": "cf48d4dfce44e0b9a2e19a008d6ec6ea6f01a83b" },
|
||||
"telescope.nvim": { "branch": "0.1.x", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
||||
"todo-comments.nvim": { "branch": "main", "commit": "ae0a2afb47cf7395dc400e5dc4e05274bf4fb9e0" },
|
||||
"vim-floaterm": { "branch": "master", "commit": "4e28c8dd0271e10a5f55142fb6fe9b1599ee6160" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "8badb359f7ab8711e2575ef75dfe6fbbd87e4821" }
|
||||
}
|
||||
|
||||
@ -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