fix(nvim): Translate augroups and autocmds to nixvim
This commit is contained in:
parent
8ea1f67f07
commit
b2b9477041
2 changed files with 81 additions and 72 deletions
|
@ -1,54 +1,61 @@
|
|||
{
|
||||
highlightOnYank.name = "highlightOnYank";
|
||||
highlightOnYank.autocmds = [
|
||||
autoGroups."highlightOnYank" = { };
|
||||
autoGroups."runLinter" = { };
|
||||
autoGroups."lspConfig" = { };
|
||||
autoGroups."restoreCursorPosition" = { };
|
||||
autoCmd = [
|
||||
{
|
||||
group = "highlightOnYank";
|
||||
event = "TextYankPost";
|
||||
pattern = "*";
|
||||
luaCallback = ''
|
||||
callback = {
|
||||
__raw = ''
|
||||
function()
|
||||
vim.highlight.on_yank {
|
||||
higroup = (
|
||||
vim.fn['hlexists'] 'HighlightedyankRegion' > 0 and 'HighlightedyankRegion' or 'IncSearch'
|
||||
),
|
||||
timeout = 200,
|
||||
}
|
||||
end
|
||||
'';
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
runLinter.name = "runLinter";
|
||||
runLinter.autocmds = [
|
||||
{
|
||||
group = "runLinter";
|
||||
event = "BufWritePost";
|
||||
pattern = "*";
|
||||
luaCallback = ''
|
||||
callback = {
|
||||
__raw = ''
|
||||
require("lint").try_lint()
|
||||
'';
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
restoreCursorPosition.name = "restoreCursorPosition";
|
||||
restoreCursorPosition.autocmds = [
|
||||
{
|
||||
group = "restoreCursorPosition";
|
||||
event = "BufReadPost";
|
||||
pattern = "*";
|
||||
luaCallback = ''
|
||||
callback = {
|
||||
__raw = ''
|
||||
function()
|
||||
if vim.fn.line '\'"' > 0 and vim.fn.line '\'"' <= vim.fn.line '$' then
|
||||
vim.cmd [[execute "normal! g'\""]]
|
||||
end
|
||||
end
|
||||
'';
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
lspConfig.name = "lspConfig";
|
||||
lspConfig.autocmds = [
|
||||
{
|
||||
group = "lspConfig";
|
||||
event = "LspAttach";
|
||||
pattern = "*";
|
||||
luaCallback =
|
||||
callback =
|
||||
let
|
||||
opts = "noremap = true, buffer = bufnr";
|
||||
in
|
||||
''
|
||||
{
|
||||
__raw = ''
|
||||
function(opts)
|
||||
local bufnr = opts.buf
|
||||
local client = vim.lsp.get_client_by_id(opts.data.client_id)
|
||||
local capabilities = client.server_capabilities
|
||||
|
@ -87,7 +94,9 @@
|
|||
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
|
||||
'';
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
@ -38,8 +38,8 @@ in
|
|||
# Enable local configuration :h 'exrc'
|
||||
options.exrc = true; # safe since nvim 0.9
|
||||
plugins = import ./plugins;
|
||||
augroups = import ./augroups.nix;
|
||||
keymaps = import ./mappings.nix;
|
||||
inherit (import ./augroups.nix) autoGroups autoCmd;
|
||||
extraPlugins =
|
||||
(with pkgs.vimExtraPlugins; [
|
||||
dressing-nvim
|
||||
|
|
Loading…
Reference in a new issue