add plugins
This commit is contained in:
parent
4197317adf
commit
28630f258b
3 changed files with 53 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
return {
|
return {
|
||||||
"goolord/alpha-nvim",
|
"goolord/alpha-nvim",
|
||||||
|
lazy = false,
|
||||||
opts = function()
|
opts = function()
|
||||||
local dashboard = require("alpha.themes.dashboard")
|
local dashboard = require("alpha.themes.dashboard")
|
||||||
dashboard.section.header.val = {
|
dashboard.section.header.val = {
|
||||||
|
|
|
||||||
15
config/astronvim/lua/user/plugins/lsp_signature.lua
Normal file
15
config/astronvim/lua/user/plugins/lsp_signature.lua
Normal 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,
|
||||||
|
}
|
||||||
37
config/astronvim/lua/user/plugins/qmk.lua
Normal file
37
config/astronvim/lua/user/plugins/qmk.lua
Normal 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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue