working NixVim!

This commit is contained in:
Charlie Root 2024-05-22 14:04:58 +02:00
commit 6513d61fa3
42 changed files with 774 additions and 454 deletions

View file

@ -1,5 +1,5 @@
{
plugins.comment = {
programs.nixvim.plugins.comment = {
enable = true;
};
}

View file

@ -10,6 +10,7 @@
hash = "sha256-Q+g81BQVQTY5J2c2ZWB7bjJLuNSdI0PAan+75YJ7mI0=";
};
in {
programs.nixvim = {
extraPlugins = with pkgs.vimUtils; [
(buildVimPlugin {
pname = "copilotchat";
@ -53,4 +54,5 @@ in {
action = "<cmd>CopilotChatCommit<cr>";
}
];
};
}

View file

@ -1,4 +1,5 @@
{
programs.nixvim = {
plugins.flash = {
enable = true;
labels = "asdfghjklqwertyuiopzxcvbnm";
@ -53,4 +54,5 @@
};
}
];
};
}

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
programs.nixvim = {
extraPlugins = with pkgs.vimUtils; [
(buildVimPlugin {
pname = "grapple.nvim";
@ -17,4 +18,5 @@
scope = "git_branch",
})
'';
};
}

View file

@ -1,5 +1,5 @@
{
plugins.hardtime = {
programs.nixvim.plugins.hardtime = {
enable = true;
enabled = true;
disableMouse = true;

View file

@ -1,5 +1,5 @@
{
plugins.harpoon = {
programs.nixvim.plugins.harpoon = {
enable = true;
enableTelescope = true;
keymapsSilent = true;

View file

@ -1,5 +1,5 @@
{
plugins.illuminate = {
programs.nixvim.plugins.illuminate = {
enable = true;
underCursor = false;
filetypesDenylist = [

View file

@ -1,5 +1,5 @@
{
plugins.nvim-autopairs = {
programs.nixvim.plugins.nvim-autopairs = {
enable = true;
};
}

View file

@ -1,4 +1,5 @@
{
programs.nixvim = {
plugins.oil = {
enable = true;
settings = {
@ -47,4 +48,5 @@
};
}
];
};
}

View file

@ -1,5 +1,5 @@
{
plugins.nvim-ufo = {
programs.nixvim.plugins.nvim-ufo = {
enable = true;
};
}

View file

@ -1,4 +1,5 @@
{
programs.nixvim = {
plugins.undotree = {
enable = true;
settings = {
@ -17,4 +18,5 @@
};
}
];
};
}

View file

@ -1,5 +1,5 @@
{
plugins.which-key = {
programs.nixvim.plugins.which-key = {
enable = true;
};
}