mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-05-03 20:23:08 +00:00
~
This commit is contained in:
parent
8cbecdb238
commit
40c4fd41eb
2 changed files with 21 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue