chore: workflow improvments
This commit is contained in:
parent
d69fb57aa6
commit
c86613b65b
6 changed files with 91 additions and 25 deletions
|
|
@ -1,6 +1,15 @@
|
|||
vim.lsp.handlers["$/progress"] = function() end
|
||||
vim.lsp.handlers["window/showMessage"] = function(_, result, ctx, config)
|
||||
local severity = vim.lsp.protocol.MessageType
|
||||
if result.type == severity.Error then
|
||||
vim.notify(result.message, vim.log.levels.ERROR)
|
||||
end
|
||||
-- ignore Info, Log, and Warning
|
||||
end
|
||||
|
||||
return {
|
||||
lua_ls = require("lsp.lua"),
|
||||
jdtls = require("lsp.java"),
|
||||
clangd = require("lsp.clangd"),
|
||||
ts_ls = require("lsp.ts_ls"),
|
||||
lua_ls = require("lsp.lua"),
|
||||
jdtls = require("lsp.java"),
|
||||
clangd = require("lsp.clangd"),
|
||||
ts_ls = require("lsp.ts_ls"),
|
||||
}
|
||||
|
|
|
|||
24
lua/plugins/calcium.lua
Normal file
24
lua/plugins/calcium.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
return {
|
||||
"necrom4/calcium.nvim",
|
||||
cmd = { "Calcium" },
|
||||
opts = {
|
||||
notifications = false,
|
||||
default_mode = "append",
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>cc",
|
||||
":Calcium<CR>",
|
||||
desc = "Calculate",
|
||||
mode = { "n", "v" },
|
||||
silent = true,
|
||||
},
|
||||
{
|
||||
"<leader>cr",
|
||||
":Calcium replace<CR>",
|
||||
desc = "Calculate Replace",
|
||||
mode = { "n", "v" },
|
||||
silent = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@ return {
|
|||
rust = { "rustfmt", lsp_format = "fallback" },
|
||||
java = { "spotless", "google-java-format" },
|
||||
lua = { "stylua" },
|
||||
php = { "php_cs_fixer", lsp_format = "fallback", stop_after_first = true },
|
||||
cpp = { "clang-format" },
|
||||
},
|
||||
formatters = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if not table.unpack then
|
||||
table.unpack = unpack
|
||||
table.unpack = unpack
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
|
|||
30
lua/plugins/term.lua
Normal file
30
lua/plugins/term.lua
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
return {
|
||||
"akinsho/toggleterm.nvim",
|
||||
version = "*",
|
||||
config = true,
|
||||
config = function()
|
||||
function _G.set_terminal_keymaps()
|
||||
local opts = { buffer = 0 }
|
||||
vim.keymap.set("t", "<esc>", [[<C-\><C-n>]], opts)
|
||||
vim.keymap.set("t", "jk", [[<C-\><C-n>]], opts)
|
||||
vim.keymap.set("t", "<C-h>", [[<Cmd>wincmd h<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-j>", [[<Cmd>wincmd j<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-k>", [[<Cmd>wincmd k<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-l>", [[<Cmd>wincmd l<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-w>", [[<C-\><C-n><C-w>]], opts)
|
||||
end
|
||||
|
||||
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
|
||||
vim.cmd("autocmd! TermOpen term://*toggleterm#* lua set_terminal_keymaps()")
|
||||
require("toggleterm").setup()
|
||||
end,
|
||||
keys = {
|
||||
{
|
||||
"<leader>tt",
|
||||
":ToggleTerm direction=float<CR>",
|
||||
desc = "Toggle Terminal",
|
||||
mode = { "n" },
|
||||
silent = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue