Compare commits

..

2 Commits

Author SHA1 Message Date
Max Luebke
f9e5ec2ec8 Add CMake language server 2025-01-29 16:15:02 +01:00
Max Luebke
6cb459db65 Add copilot 2025-01-29 16:14:51 +01:00
2 changed files with 11 additions and 0 deletions

View File

@ -635,6 +635,7 @@ require('lazy').setup({
clangd = {
cmd = { 'clangd', '--offset-encoding=utf-16' },
},
cmake = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},

View File

@ -45,4 +45,14 @@ return {
{
'github/copilot.vim',
},
{
'amitds1997/remote-nvim.nvim',
version = '*', -- Pin to GitHub releases
dependencies = {
'nvim-lua/plenary.nvim', -- For standard functions
'MunifTanjim/nui.nvim', -- To build the plugin UI
'nvim-telescope/telescope.nvim', -- For picking b/w different remote methods
},
config = true,
},
}