implemented copilot integration as ghost text and simplified some

keyboard shortcuts
This commit is contained in:
venus
2026-07-24 07:24:45 -05:00
parent d04ef25170
commit 04b57e60e6
16 changed files with 436 additions and 131 deletions

View File

@@ -3,6 +3,7 @@ require('lspconfig')
local lsp_servers = {
'clangd',
'pyright',
'bashls',
'lua_ls',
}
for _, server in ipairs(lsp_servers) do
@@ -24,6 +25,9 @@ for _, server in ipairs(lsp_servers) do
},
}
end
if server == 'bashls' then
config.filetypes = { 'sh', 'bash', 'zsh' }
end
-- Apply the config and enable
vim.lsp.config(server, config)