1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-03 20:23:08 +00:00
This commit is contained in:
Rae 5e 2025-04-12 14:16:50 -04:00
parent 8cbecdb238
commit 40c4fd41eb
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
2 changed files with 21 additions and 1 deletions

View file

@ -18,6 +18,25 @@
vadimcn.vscode-lldb
wakatime.vscode-wakatime
];
languageSnippets = {
nix = {
shell = {
body = [
"{ pkgs ? import <nixpkgs> {} }: pkgs.callPackage ("
" {"
" mkShell"
" }: mkShell {"
" strictDeps = true;"
" nativeBuildInputs = [];"
" buildInputs = [];"
" }"
") {}"
];
description = "shell.nix boilerplate";
prefix = "__s";
}
};
};
userSettings =
let
df = lang: formatter: {
@ -32,6 +51,7 @@
# "editor.fontLigatures" = true;
"editor.formatOnSave" = false;
"editor.indentSize" = 4;
"editor.inlayHints.enabled" = false;
"editor.insertSpaces" = false;
"editor.tabSize" = 4;
"explorer.confirmDelete" = false;