mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
reworked nvim
This commit is contained in:
parent
6474455a8e
commit
c6aded3e64
14 changed files with 254 additions and 181 deletions
19
homeConfig/modules/neovim/config/plugins/default.nix
Normal file
19
homeConfig/modules/neovim/config/plugins/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
theme = import ./theme;
|
||||
treesitter = import ./treesitter;
|
||||
editing = import ./editing;
|
||||
lsp = import ./lsp;
|
||||
luasnip = import ./luasnip;
|
||||
tools = import ./tools;
|
||||
|
||||
in
|
||||
builtins.concatMap (dir: dir { inherit pkgs lib; }) [
|
||||
theme
|
||||
treesitter
|
||||
editing
|
||||
lsp
|
||||
luasnip
|
||||
tools
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue