09e9158b85
Also fix neovim errors Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/845a5c4c073f74105022533907703441e0464bc3?narHash=sha256-vWSkg6AMok1UUQiSYVdGMOXKD2cDFnajITiSi0Zjd1A%3D' (2024-06-04) → 'github:nix-community/home-manager/a1fddf0967c33754271761d91a3d921772b30d0e?narHash=sha256-BmO8d0r%2BBVlwWtMLQEYnwmngqdXIuyFzMwvmTcLMee8%3D' (2024-06-16) • Updated input 'lix': '068576042b
.tar.gz?narHash=sha256-/hsqsiw3p5qMpazedgFFZF2sQghbCJIoef7XCpegTXw%3D' (2024-06-13) → 'e44dcd63c4
.tar.gz?narHash=sha256-cAkgZoiP2eHB%2BV2cPJMcXACzdaWZIMgI5sg4vpH%2BDYo%3D' (2024-06-20) • Updated input 'lix-module': '4e25f1ab68
.tar.gz?narHash=sha256-m8XYt8NU2T4gvkien7H7LFGXHhSA5z4tHOeuXQ3DJi4%3D' (2024-06-06) → '909e593ae9
.tar.gz?narHash=sha256-DdcMvX9r29uHMlz7P1Shgs5xZw9WkZ4ObMGYzwROAiw%3D' (2024-06-19) • Updated input 'nixos-hardware': 'github:NixOS/nixos-hardware/ae5c8dcc4d0182d07d75df2dc97112de822cb9d6?narHash=sha256-SuPne4BMqh9/IkKIAG47Cu5qfmntAaqlHdX1yuFoDO0%3D' (2024-06-14) → 'github:NixOS/nixos-hardware/083823b7904e43a4fc1c7229781417e875359a42?narHash=sha256-hxQBUtDbFOCCW1CsFZTS9Q5Ov1ZKdJgbBZHSez1M6iA%3D' (2024-06-20) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/cc54fb41d13736e92229c21627ea4f22199fee6b?narHash=sha256-US1tAChvPxT52RV8GksWZS415tTS7PV42KTc2PNDBmc%3D' (2024-06-12) → 'github:NixOS/nixpkgs/dd457de7e08c6d06789b1f5b88fc9327f4d96309?narHash=sha256-wM9v2yIxClRYsGHut5vHICZTK7xdrUGfrLkXvSuv6s4%3D' (2024-06-19) • Updated input 'nixvim': 'github:nix-community/nixvim/7a2a25af02be25987aa43cd681312f4b5ba12317?narHash=sha256-NIJZxmY2CWsqJK/9BQCRSHfcCY9K6thjq/1XtJobxmU%3D' (2024-06-14) → 'github:nix-community/nixvim/744dfea48bdd331e66b9e874822559fa6fae98af?narHash=sha256-artyEBzWUsNXtYj7jBr816wRJj2Y3DYDHw6ECrQotX0%3D' (2024-06-20) • Updated input 'nixvim/treefmt-nix': 'github:numtide/treefmt-nix/1cb529bffa880746a1d0ec4e0f5076876af931f1?narHash=sha256-1TZQcdETNdJMcfwwoshVeCjwWfrPtkSQ8y8wFX3it7k%3D' (2024-06-11) → 'github:numtide/treefmt-nix/68eb1dc333ce82d0ab0c0357363ea17c31ea1f81?narHash=sha256-ULzoKzEaBOiLRtjeY3YoGFJMwWSKRYOic6VNw2UyTls%3D' (2024-06-16) • Updated input 'unstable': 'github:NixOS/nixpkgs/e9ee548d90ff586a6471b4ae80ae9cfcbceb3420?narHash=sha256-4Zu0RYRcAY/VWuu6awwq4opuiD//ahpc2aFHg2CWqFY%3D' (2024-06-13) → 'github:NixOS/nixpkgs/c00d587b1a1afbf200b1d8f0b0e4ba9deb1c7f0e?narHash=sha256-FUZpz9rg3gL8NVPKbqU8ei1VkPLsTIfAJ2fdAf5qjak%3D' (2024-06-18)
94 lines
3.4 KiB
Nix
94 lines
3.4 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
helpers,
|
|
...
|
|
}: let
|
|
inherit (helpers) mkRaw;
|
|
cfg = config.jhome.nvim;
|
|
in
|
|
lib.mkIf cfg.enable {
|
|
autoGroups = {
|
|
"highlightOnYank" = {};
|
|
"lspConfig" = {};
|
|
"restoreCursorPosition" = {};
|
|
};
|
|
autoCmd = [
|
|
{
|
|
group = "highlightOnYank";
|
|
event = "TextYankPost";
|
|
pattern = "*";
|
|
callback = mkRaw ''
|
|
function()
|
|
vim.highlight.on_yank {
|
|
higroup = (
|
|
vim.fn['hlexists'] 'HighlightedyankRegion' > 0 and 'HighlightedyankRegion' or 'IncSearch'
|
|
),
|
|
timeout = 200,
|
|
}
|
|
end
|
|
'';
|
|
}
|
|
{
|
|
group = "restoreCursorPosition";
|
|
event = "BufReadPost";
|
|
pattern = "*";
|
|
callback = mkRaw ''
|
|
function()
|
|
if vim.fn.line '\'"' > 0 and vim.fn.line '\'"' <= vim.fn.line '$' then
|
|
vim.cmd [[execute "normal! g'\""]]
|
|
end
|
|
end
|
|
'';
|
|
}
|
|
{
|
|
group = "lspConfig";
|
|
event = "LspAttach";
|
|
pattern = "*";
|
|
callback = let
|
|
opts = "noremap = true, buffer = bufnr";
|
|
in
|
|
mkRaw ''
|
|
function(opts)
|
|
local bufnr = opts.buf
|
|
local client = vim.lsp.get_client_by_id(opts.data.client_id)
|
|
local capabilities = client.server_capabilities
|
|
-- Set Omnifunc if supported
|
|
if capabilities.completionProvider then
|
|
vim.bo[bufnr].omnifunc = "v:lua.vim.lsp.omnifunc"
|
|
end
|
|
-- Enable inlay hints if supported
|
|
if capabilities.inlayHintProvider then
|
|
vim.lsp.inlay_hint.enable(true, { bufnr = bufnr })
|
|
end
|
|
-- Some Lsp servers do not advertise inlay hints properly so enable this keybinding regardless
|
|
vim.keymap.set('n', '<space>ht', function()
|
|
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled({bufnr = 0}), { bufnr = 0 })
|
|
end,
|
|
{ desc = '[H]ints [T]oggle', ${opts} }
|
|
)
|
|
-- Enable hover if supported
|
|
if capabilities.hoverProvider then
|
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover, { desc = 'Hover Documentation', ${opts} })
|
|
end
|
|
-- Enable rename if supported
|
|
if capabilities.renameProvider then
|
|
vim.keymap.set('n', '<leader>r', vim.lsp.buf.rename, { desc = '[R]ename', ${opts} })
|
|
end
|
|
-- Enable code actions if supported
|
|
if capabilities.codeActionProvider then
|
|
vim.keymap.set({ 'n', 'v' }, '<leader>fa', vim.lsp.buf.code_action, { desc = '[F]ind Code [A]ctions', ${opts} })
|
|
end
|
|
-- Enable formatting if supported
|
|
if capabilities.documentFormattingProvider then
|
|
vim.keymap.set('n', '<leader>w', function() require("conform").format({ lsp_fallback = true }) end, { desc = 'Format Buffer', ${opts} })
|
|
end
|
|
-- Other keybinds
|
|
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, { desc = '[G]o to [D]efinition', ${opts} })
|
|
vim.keymap.set('n', 'gt', vim.lsp.buf.type_definition, { desc = '[G]o to [T]ype Definition', ${opts} })
|
|
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, { desc = '[G]o to [I]mplementation', ${opts} })
|
|
end
|
|
'';
|
|
}
|
|
];
|
|
}
|