agsdotfilesdotshyprlandhyprland-configricerofirofi-configshell-scriptsswwwwallustwaybarwaybar-modulewaybar-themes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
614 B
25 lines
614 B
return { |
|
{ |
|
"williamboman/mason.nvim", |
|
config = function() |
|
require("mason").setup() |
|
end |
|
}, |
|
{ |
|
"williamboman/mason-lspconfig.nvim", |
|
config = function() |
|
require("mason-lspconfig").setup({ |
|
ensure_installed = {"lua_ls", "clangd", "cmake", "cssls", "html"} |
|
}) |
|
end |
|
}, |
|
{ |
|
"neovim/nvim-lspconfig", |
|
config = function() |
|
local lspconfig = require("lspconfig") |
|
lspconfig.lua_ls.setup({}) |
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover, {}) |
|
end |
|
} |
|
} |
|
|
|
|