nixos-configs/homeManagerModules/neovim/langs/c-lang/default.nix

78 lines
2.1 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
inherit (pkgs.writers) writeYAML;
cfg = config.programs.neovim;
2024-12-22 03:12:45 -05:00
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
in {
config = mkIf cfg.enable {
xdg.configFile."clangd/config.yaml".source = writeYAML "config.yaml" {
CompileFlags.Add = ["-D__cpp_concepts=202002L"];
};
programs = {
neovim = {
2024-05-11 15:33:38 -04:00
extraLuaConfig =
2024-06-09 22:49:30 -04:00
# lua
2024-05-11 15:33:38 -04:00
''
vim.api.nvim_create_autocmd('FileType', {
2024-12-16 17:44:17 -05:00
pattern = { 'cpp', 'c' },
2024-12-22 03:12:45 -05:00
callback = function()
vim.cmd[[setlocal ts=4 sw=4 sts=0 expandtab]];
if (devShells['c-lang'] == nil) then
devShells['c-lang'] = 1;
2024-12-22 12:53:27 -05:00
require('nix-develop').nix_develop({'${flakeEnv}#c-lang'}, function()
2024-12-22 12:42:29 -05:00
vim.cmd[[LspStart]];
2024-12-22 12:53:27 -05:00
end);
2024-12-22 03:12:45 -05:00
end
end,
});
2024-05-11 15:33:38 -04:00
'';
plugins = [
{
plugin = pkgs.vimPlugins.clangd_extensions-nvim;
type = "lua";
config =
# lua
''
local lsp = require('lspconfig');
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
local clangd_extensions = require('clangd_extensions.inlay_hints');
lsp.cmake.setup({
capabilities = default_capabilities,
2024-12-22 03:12:45 -05:00
autostart = false,
});
lsp.clangd.setup({
capabilities = default_capabilities,
2024-12-22 03:12:45 -05:00
autostart = false,
handlers = require('lsp-status').extensions.clangd.setup(),
on_attach = function(_, bufnr)
clangd_extensions.setup_autocmd();
clangd_extensions.set_inlay_hints();
end,
});
'';
}
];
};
};
};
# For accurate stack trace
_file = ./default.nix;
}