pkgs(nixvim): Add some basic structure
This commit is contained in:
parent
c75945ddba
commit
0bae976b08
11 changed files with 55 additions and 0 deletions
1
pkgs/nixvim/autocmds.nix
Normal file
1
pkgs/nixvim/autocmds.nix
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{...}: {}
|
||||||
16
pkgs/nixvim/coding.nix
Normal file
16
pkgs/nixvim/coding.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{...}: {
|
||||||
|
plugins = {
|
||||||
|
# mini-pairs = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# ts-comments = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# mini-ai = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# lazydev = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
}
|
||||||
22
pkgs/nixvim/editor.nix
Normal file
22
pkgs/nixvim/editor.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
{...}: {
|
||||||
|
plugins = {
|
||||||
|
# grug-far = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# flash = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# which-key = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# gitsigns = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# trouble = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
# todo-comments = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
}
|
||||||
2
pkgs/nixvim/formatting.nix
Normal file
2
pkgs/nixvim/formatting.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
1
pkgs/nixvim/keymaps.nix
Normal file
1
pkgs/nixvim/keymaps.nix
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{...}: {}
|
||||||
1
pkgs/nixvim/linting.nix
Normal file
1
pkgs/nixvim/linting.nix
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{...}: {}
|
||||||
2
pkgs/nixvim/lsp.nix
Normal file
2
pkgs/nixvim/lsp.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
2
pkgs/nixvim/options.nix
Normal file
2
pkgs/nixvim/options.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
2
pkgs/nixvim/treesitter.nix
Normal file
2
pkgs/nixvim/treesitter.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
2
pkgs/nixvim/ui.nix
Normal file
2
pkgs/nixvim/ui.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
{...}: {
|
||||||
|
}
|
||||||
4
pkgs/nixvim/util.nix
Normal file
4
pkgs/nixvim/util.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue