Jalil David Salamé Messina
bbb209135e
All checks were successful
/ check (push) Successful in 44s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
This reduces startup time from ~155ms -> ~66ms
178 lines
4.5 KiB
Nix
178 lines
4.5 KiB
Nix
{ lib, helpers, ... }:
|
|
let
|
|
inherit (helpers) mkRaw;
|
|
in
|
|
{
|
|
config.plugins = {
|
|
cmp = {
|
|
enable = true;
|
|
cmdline = {
|
|
"/" = {
|
|
mapping =
|
|
mkRaw
|
|
# lua
|
|
''
|
|
cmp.mapping.preset.cmdline()
|
|
'';
|
|
sources = [
|
|
{ name = "rg"; }
|
|
{ name = "buffer"; }
|
|
];
|
|
};
|
|
":" = {
|
|
mapping =
|
|
mkRaw
|
|
# lua
|
|
''
|
|
cmp.mapping.preset.cmdline()
|
|
'';
|
|
sources = [
|
|
{ name = "path"; }
|
|
{ name = "cmdline"; }
|
|
];
|
|
};
|
|
};
|
|
settings = {
|
|
# Snippets
|
|
snippet.expand =
|
|
# lua
|
|
''
|
|
function(args) require('luasnip').lsp_expand(args.body) end
|
|
'';
|
|
# Completion Sources
|
|
sources = [
|
|
{
|
|
name = "buffer";
|
|
groupIndex = 3;
|
|
}
|
|
{
|
|
name = "calc";
|
|
groupIndex = 2;
|
|
}
|
|
{
|
|
name = "conventionalcommits";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "crates";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "luasnip";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "nvim_lsp";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "nvim_lsp_document_symbol";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "nvim_lsp_signature_help";
|
|
groupIndex = 1;
|
|
}
|
|
{
|
|
name = "path";
|
|
groupIndex = 2;
|
|
}
|
|
{
|
|
name = "spell";
|
|
groupIndex = 2;
|
|
}
|
|
{
|
|
name = "treesitter";
|
|
groupIndex = 2;
|
|
}
|
|
];
|
|
mapping =
|
|
mkRaw
|
|
# lua
|
|
''
|
|
cmp.mapping.preset.insert({
|
|
["<C-n>"] = function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif require("luasnip").expand_or_jumpable() then
|
|
require("luasnip").expand_or_jump()
|
|
elseif has_words_before() then
|
|
cmp.complete()
|
|
else
|
|
fallback()
|
|
end
|
|
end,
|
|
["<C-p>"] = function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_prev_item()
|
|
elseif require("luasnip").jumpable(-1) then
|
|
require("luasnip").jump(-1)
|
|
else
|
|
fallback()
|
|
end
|
|
end,
|
|
["<C-u>"] = cmp.mapping(function(fallback)
|
|
if require("luasnip").choice_active() then
|
|
require("luasnip").next_choice()
|
|
else
|
|
fallback()
|
|
end
|
|
end),
|
|
["<C-b>"] = cmp.mapping.scroll_docs(-4),
|
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
|
["<C-Space>"] = cmp.mapping.complete { },
|
|
["<C-e>"] = cmp.mapping.close(),
|
|
["<CR>"] = cmp.mapping.confirm { select = true },
|
|
})
|
|
'';
|
|
};
|
|
};
|
|
gitsigns.enable = true;
|
|
lualine = {
|
|
enable = true;
|
|
settings.options.theme = lib.mkForce "gruvbox";
|
|
};
|
|
luasnip = {
|
|
enable = true;
|
|
settings.update_events = "TextChanged,TextChangedI";
|
|
};
|
|
noice = {
|
|
enable = true;
|
|
settings = {
|
|
lsp.override = {
|
|
"vim.lsp.util.convert_input_to_markdown_lines" = true;
|
|
"vim.lsp.util.stylize_markdown" = true;
|
|
"cmp.entry.get_documentation" = true;
|
|
};
|
|
presets = {
|
|
# use a classic bottom cmdline for search
|
|
bottom_search = true;
|
|
# position the cmdline and popupmenu together
|
|
command_palette = false;
|
|
# long messages will be sent to a split
|
|
long_message_to_split = true;
|
|
# enables an input dialog for inc-rename.nvim
|
|
inc_rename = false;
|
|
# add a border to hover docs and signature help
|
|
lsp_doc_border = true;
|
|
};
|
|
};
|
|
};
|
|
notify = {
|
|
enable = true;
|
|
backgroundColour = "#000000";
|
|
};
|
|
telescope = {
|
|
enable = true;
|
|
extensions = {
|
|
ui-select.enable = true;
|
|
fzy-native.enable = true;
|
|
};
|
|
};
|
|
trouble = {
|
|
enable = true;
|
|
settings.auto_close = true;
|
|
};
|
|
web-devicons.enable = true;
|
|
};
|
|
}
|