(Desktop) resolved some issues with nixvim plugin path

This commit is contained in:
pagedMov
2024-10-12 11:48:58 -04:00
parent 8b0593d436
commit 212180e400
3 changed files with 31 additions and 7 deletions

20
flake.lock generated
View File

@@ -346,11 +346,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728685293, "lastModified": 1728726232,
"narHash": "sha256-1WowL96pksT/XCi+ZXHgqiQ9NiU5oxWuNIQYWqOoEYc=", "narHash": "sha256-8ZWr1HpciQsrFjvPMvZl0W+b0dilZOqXPoKa2Ux36bc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2b13611eaed8326789f76f70d21d06fbb14e3e47", "rev": "d57112db877f07387ce7104b5ac346ede556d2d7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -442,11 +442,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1728692991, "lastModified": 1728742719,
"narHash": "sha256-lPjl4phydWEjM3PUUqMkDbna/oxNnKJp6+I21TWtxbc=", "narHash": "sha256-t9xlU0hrWSrQenblkg0Mq1wBx4I6A2IdgoVT3/kAx2I=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "ee8116ac5dc412dce924a0163074ce7988dd0cfc", "rev": "c3f7c9bbb52b9ad3d24ccfcc5c552ed16c9985a5",
"revCount": 5330, "revCount": 5331,
"submodules": true, "submodules": true,
"type": "git", "type": "git",
"url": "https://github.com/hyprwm/Hyprland" "url": "https://github.com/hyprwm/Hyprland"
@@ -854,9 +854,15 @@
"pre-commit-hooks": "pre-commit-hooks_2" "pre-commit-hooks": "pre-commit-hooks_2"
}, },
"locked": { "locked": {
<<<<<<< Updated upstream
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-4AcRtmk2axQHKMd07X8fEPXCgiqv0hst7n/bg37CDfI=", "narHash": "sha256-4AcRtmk2axQHKMd07X8fEPXCgiqv0hst7n/bg37CDfI=",
"path": "./pkgs/nixvim", "path": "./pkgs/nixvim",
=======
"lastModified": 1728747549,
"narHash": "sha256-9n6nu8BS4MWpoQLyDqyGXaeJb6G9IzwQgbFjwvBdPL0=",
"path": "/home/pagedmov/sysflakes/glasshouse-desktop/home/nixvim",
>>>>>>> Stashed changes
"type": "path" "type": "path"
}, },
"original": { "original": {

View File

@@ -1,6 +1,7 @@
{ {
imports = [ imports = [
./plugins/alpha.nix ./plugins/alpha.nix
./plugins/vim-matchup.nix
./plugins/coq.nix ./plugins/coq.nix
./plugins/barbar.nix ./plugins/barbar.nix
./plugins/cmp.nix ./plugins/cmp.nix

View File

@@ -0,0 +1,17 @@
{
plugins.vim-matchup = {
enable = true;
enableSurround = true;
motion = {
enable = true;
cursorEnd = true;
};
matchParen = {
hiSurroundAlways = true;
};
treesitterIntegration = {
enable = true;
includeMatchWords = true;
};
};
}