backlog
This commit is contained in:
parent
f0c1bbaa4e
commit
2e352f3624
4 changed files with 163 additions and 14 deletions
|
@ -57,6 +57,6 @@ vim.diagnostic.config({
|
|||
virtual_text = true
|
||||
})
|
||||
|
||||
require("lsp_signature").setup({
|
||||
--[[require("lsp_signature").setup({
|
||||
hint_prefix = "▲ ",
|
||||
})
|
||||
})--]]
|
||||
|
|
|
@ -24,7 +24,7 @@ null_ls.setup({
|
|||
end
|
||||
|
||||
if client.supports_method("textDocument/rangeFormatting") then
|
||||
vim.keymap.set("x", "<Leader>f", function()
|
||||
vim.keymap.set("x", "<Leader>vf", function()
|
||||
vim.lsp.buf.format({ bufnr = vim.api.nvim_get_current_buf() })
|
||||
end, { buffer = bufnr, desc = "[lsp] format" })
|
||||
end
|
||||
|
|
|
@ -43,7 +43,7 @@ return packer.startup(function(use)
|
|||
})
|
||||
use("jose-elias-alvarez/null-ls.nvim")
|
||||
use("MunifTanjim/prettier.nvim")
|
||||
use("ray-x/lsp_signature.nvim")
|
||||
--use("ray-x/lsp_signature.nvim")
|
||||
-- }}}
|
||||
|
||||
-- {{{ misc
|
||||
|
@ -73,7 +73,7 @@ return packer.startup(function(use)
|
|||
require("colorizer").setup()
|
||||
end
|
||||
})
|
||||
use({
|
||||
--[[use({
|
||||
"yamatsum/nvim-cursorline",
|
||||
config = function()
|
||||
require("nvim-cursorline").setup({
|
||||
|
@ -85,15 +85,7 @@ return packer.startup(function(use)
|
|||
},
|
||||
})
|
||||
end
|
||||
})
|
||||
use({
|
||||
"sunjon/shade.nvim",
|
||||
config = function()
|
||||
require("shade").setup({
|
||||
overlay_opacity = 25,
|
||||
})
|
||||
end
|
||||
})
|
||||
})--]]
|
||||
use({
|
||||
"windwp/nvim-autopairs",
|
||||
config = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue