mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
24c1a6335e
Co-authored-by: Felix Leitz <felix.leitz92@gmail.com>
71 lines
1.7 KiB
Nix
71 lines
1.7 KiB
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
|
|
snippetsDir = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
"Library/Application Support/Code/User/snippets"
|
|
else
|
|
".config/Code/User/snippets";
|
|
|
|
globalSnippetsPath = "${snippetsDir}/global.code-snippets";
|
|
|
|
globalSnippetsExpectedContent = pkgs.writeText "global.code-snippet" ''
|
|
{
|
|
"fixme": {
|
|
"body": [
|
|
"fixme body in global user snippet"
|
|
],
|
|
"description": "Insert a FIXME remark",
|
|
"prefix": [
|
|
"fixme"
|
|
]
|
|
}
|
|
}
|
|
'';
|
|
|
|
haskellSnippetsPath = "${snippetsDir}/haskell.json";
|
|
|
|
haskellSnippetsExpectedContent = pkgs.writeText "haskell.json" ''
|
|
{
|
|
"impl": {
|
|
"body": [
|
|
"impl body in user haskell snippet"
|
|
],
|
|
"description": "Insert an implementation stub",
|
|
"prefix": [
|
|
"impl"
|
|
]
|
|
}
|
|
}
|
|
'';
|
|
|
|
in {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
|
|
globalSnippets = {
|
|
fixme = {
|
|
prefix = [ "fixme" ];
|
|
body = [ "fixme body in global user snippet" ];
|
|
description = "Insert a FIXME remark";
|
|
};
|
|
};
|
|
languageSnippets = {
|
|
haskell = {
|
|
impl = {
|
|
prefix = [ "impl" ];
|
|
body = [ "impl body in user haskell snippet" ];
|
|
description = "Insert an implementation stub";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/${globalSnippetsPath}"
|
|
assertFileContent "home-files/${globalSnippetsPath}" "${globalSnippetsExpectedContent}"
|
|
|
|
assertFileExists "home-files/${haskellSnippetsPath}"
|
|
assertFileContent "home-files/${haskellSnippetsPath}" "${haskellSnippetsExpectedContent}"
|
|
'';
|
|
}
|