mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-05-03 12:14:07 +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
|
vadimcn.vscode-lldb
|
||||||
wakatime.vscode-wakatime
|
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 =
|
userSettings =
|
||||||
let
|
let
|
||||||
df = lang: formatter: {
|
df = lang: formatter: {
|
||||||
|
@ -32,6 +51,7 @@
|
||||||
# "editor.fontLigatures" = true;
|
# "editor.fontLigatures" = true;
|
||||||
"editor.formatOnSave" = false;
|
"editor.formatOnSave" = false;
|
||||||
"editor.indentSize" = 4;
|
"editor.indentSize" = 4;
|
||||||
|
"editor.inlayHints.enabled" = false;
|
||||||
"editor.insertSpaces" = false;
|
"editor.insertSpaces" = false;
|
||||||
"editor.tabSize" = 4;
|
"editor.tabSize" = 4;
|
||||||
"explorer.confirmDelete" = false;
|
"explorer.confirmDelete" = false;
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
hyfetch # neofetch with pride flags <3
|
hyfetch # neofetch with pride flags <3
|
||||||
kitty # Modern, hackable, featureful, OpenGL based terminal emulator
|
kitty # Modern, hackable, featureful, OpenGL based terminal emulator
|
||||||
monitor # Manage processes and monitor system resources
|
monitor # Manage processes and monitor system resources
|
||||||
unzip # Extraction utility for archives compressed in .zip format
|
p7zip # New p7zip fork with additional codecs and improvements (forked from https://sourceforge.net/projects/p7zip/)
|
||||||
usbutils # Tools for working with USB devices, such as lsusb
|
usbutils # Tools for working with USB devices, such as lsusb
|
||||||
wineWowPackages.stable # Open Source implementation of the Windows API on top of X, OpenGL, and Unix
|
wineWowPackages.stable # Open Source implementation of the Windows API on top of X, OpenGL, and Unix
|
||||||
xclip # Tool to access the X clipboard from a console application
|
xclip # Tool to access the X clipboard from a console application
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue