feat(nvim): add easytables
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
ea9ed3f8dc
commit
bc18bbcf82
3 changed files with 11 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
lib,
|
lib,
|
||||||
nvim-theme-src,
|
nvim-theme-src,
|
||||||
coc-stylelintplus,
|
coc-stylelintplus,
|
||||||
|
vimplugin-easytables-src,
|
||||||
vimplugin-riscv-src,
|
vimplugin-riscv-src,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
@ -259,8 +260,18 @@ in {
|
||||||
}
|
}
|
||||||
(pkgs.vimUtils.buildVimPlugin {
|
(pkgs.vimUtils.buildVimPlugin {
|
||||||
name = "riscv-asm";
|
name = "riscv-asm";
|
||||||
|
version = vimplugin-riscv-src.shortRev;
|
||||||
src = vimplugin-riscv-src;
|
src = vimplugin-riscv-src;
|
||||||
})
|
})
|
||||||
|
{
|
||||||
|
plugin = (pkgs.vimUtils.buildVimPlugin {
|
||||||
|
name = "easytables-nvim";
|
||||||
|
version = vimplugin-easytables-src.shortRev;
|
||||||
|
src = vimplugin-easytables-src;
|
||||||
|
});
|
||||||
|
type = "lua";
|
||||||
|
config = ''require("easytables").setup();'';
|
||||||
|
}
|
||||||
])
|
])
|
||||||
# Treesitter
|
# Treesitter
|
||||||
++ (with pkgs.vimPlugins; [
|
++ (with pkgs.vimPlugins; [
|
||||||
|
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
BIN
flake.nix
BIN
flake.nix
Binary file not shown.
Loading…
Reference in a new issue