-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sathvik Birudavolu
committed
Dec 22, 2023
1 parent
62608a5
commit adcdfc9
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ | |
# NOTE: Never mess with hostName on a company managed machine! | ||
hostName = null; | ||
computerName = "Sathvik’s Work MBP"; | ||
email = "[email protected]"; | ||
}; | ||
in | ||
{ | ||
|
@@ -101,6 +102,16 @@ | |
''; | ||
}; | ||
}; | ||
|
||
# neovim-unwrapped installs tree-sitter parsers that are added to the path that | ||
# conflict with nvim-treesitter parser install starting v9.4 | ||
neovim-unwrapped = final: prev: { | ||
neovim-unwrapped = prev.neovim-unwrapped.overrideAttrs { | ||
postInstall = '' | ||
rm -rf $out/lib/nvim/parser/* | ||
''; | ||
}; | ||
}; | ||
}; | ||
# }}} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters