various
This commit is contained in:
parent
00d2f2fcf5
commit
c699c93497
30 changed files with 31 additions and 7 deletions
4
lua/custom/plugins/autoformat.lua
Normal file → Executable file
4
lua/custom/plugins/autoformat.lua
Normal file → Executable file
|
|
@ -35,8 +35,6 @@ return {
|
|||
group = vim.api.nvim_create_augroup('kickstart-lsp-attach-format', { clear = true }),
|
||||
-- This is where we attach the autoformatting for reasonable clients
|
||||
callback = function(args)
|
||||
-- dont reformat anything
|
||||
if true then return end
|
||||
local client_id = args.data.client_id
|
||||
local client = vim.lsp.get_client_by_id(client_id)
|
||||
local bufnr = args.buf
|
||||
|
|
@ -48,7 +46,7 @@ return {
|
|||
|
||||
-- Tsserver usually works poorly. Sorry you work with bad languages
|
||||
-- You can remove this line if you know what you're doing :)
|
||||
if client.name == 'tsserver' or client.name == 'jsonls' or client.name == 'html' then
|
||||
if client.name == 'tsserver' or client.name == 'jsonls' or client.name == 'html' or client.name == 'intelephense' then
|
||||
return
|
||||
end
|
||||
|
||||
|
|
|
|||
0
lua/custom/plugins/debug.lua
Normal file → Executable file
0
lua/custom/plugins/debug.lua
Normal file → Executable file
0
lua/custom/plugins/nvim-tree.lua
Normal file → Executable file
0
lua/custom/plugins/nvim-tree.lua
Normal file → Executable file
5
lua/custom/plugins/suda.lua
Executable file
5
lua/custom/plugins/suda.lua
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
{
|
||||
"lambdalisue/suda.vim"
|
||||
}
|
||||
}
|
||||
0
lua/custom/plugins/themes.lua
Normal file → Executable file
0
lua/custom/plugins/themes.lua
Normal file → Executable file
0
lua/custom/plugins/tmux-nvim.lua
Normal file → Executable file
0
lua/custom/plugins/tmux-nvim.lua
Normal file → Executable file
9
lua/custom/plugins/trouble.lua
Normal file
9
lua/custom/plugins/trouble.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"folke/trouble.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
}
|
||||
0
lua/custom/plugins/util.lua
Normal file → Executable file
0
lua/custom/plugins/util.lua
Normal file → Executable file
Loading…
Add table
Add a link
Reference in a new issue