add plugins

This commit is contained in:
Alexander Navarro 2023-04-08 12:24:50 -04:00
parent 4197317adf
commit 28630f258b
3 changed files with 53 additions and 0 deletions

View file

@ -1,5 +1,6 @@
return {
"goolord/alpha-nvim",
lazy = false,
opts = function()
local dashboard = require("alpha.themes.dashboard")
dashboard.section.header.val = {

View file

@ -0,0 +1,15 @@
return {
"ray-x/lsp_signature.nvim",
event = "VeryLazy",
config = function()
local signature_config = {
hint_enable = false,
}
require("lsp_signature").setup(signature_config)
vim.keymap.set({ "n" }, "<Leader>k", function()
vim.lsp.buf.signature_help()
end, { silent = true, noremap = true, desc = "toggle signature" })
end,
}

View file

@ -0,0 +1,37 @@
return {
"codethread/qmk.nvim",
ft = "c",
config = {
name = "LAYOUT",
layout = {
"_ x x x x x x _ _ _ x x x x x x",
"_ x x x x x x _ _ _ x x x x x x",
"_ x x x x x x _ _ _ x x x x x x",
"_ x x x x x x x _ x x x x x x x",
"_ _ _ x x x x x _ x x x x x _ _",
},
comment_preview = {
-- mostly overrides for Spanish Latin American
keymap_overrides = {
KC_SYMBOLS = "Symbols",
KC_SYSTEM = "System",
KC_NUMPAD = "Numpad",
KC_GAME = "Game",
KC_COLEMAK = "Colemak",
KC_QWERTY = "Qwerty",
KC_GRV = "|",
KC_GRAVE = "|",
KC_SCLN = "ñ",
ES_COMM = ",",
ES_DOT = ".",
ES_MINS = "-",
ES_QUOT = "'",
ES_GRV = "´",
ES_IEXL = "?",
ES_LABK = ">",
ES_PLUS = "+",
KC_ALGR = "algr",
},
},
},
}