This file contains hidden or 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
input { | |
keyboard { | |
xkb { | |
// You can set rules, model, layout, variant and options. | |
// For more information, see xkeyboard-config(7). | |
// For example: | |
// layout "us,ru" | |
// options "grp:win_space_toggle,compose:ralt,ctrl:nocaps" | |
options "ctrl:nocaps" |
This file contains hidden or 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
{ | |
description = "C++ Minimal Flake Setting"; | |
inputs = { | |
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | |
flake-utils.url = "github:numtide/flake-utils"; | |
}; | |
outputs = { nixpkgs, flake-utils, ... }: | |
flake-utils.lib.eachDefaultSystem ( |
This file contains hidden or 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
--- | |
Language: Cpp | |
BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: BlockIndent | |
AlignConsecutiveAssignments: None | |
AlignConsecutiveDeclarations: None | |
AlignOperands: Align | |
AlignTrailingComments: false | |
AllowShortBlocksOnASingleLine: Empty |
This gist is a docker compose configuration for Vaultwarden, which is an Bitwarden compatible server.
This configuration uses caddy for a reverse proxy.
caddy
will automatically configure TLS certificates using ACME HTTP-01 challenge.
This file contains hidden or 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
[window] | |
opacity = 0.95 | |
[window.dimensions] | |
columns = 120 | |
lines = 32 | |
[window.padding] | |
x = 6 | |
y = 6 |
This file contains hidden or 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
"$schema" = 'https://starship.rs/config-schema.json' | |
continuation_prompt = "[ ](#62708a)" | |
format = """ | |
[ ](bg:#445167)[ ](bg:#62708a)[ ](bg:#808eaf)\ | |
$os$shell\ | |
[](bg:#769ff0 fg:#a3aed2)\ | |
$directory\ | |
[](fg:#769ff0 bg:#394260)\ |
This file contains hidden or 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
#!/bin/bash | |
if ! cargo fmt --check; then | |
echo >&2 "" | |
echo >&2 "Run \`cargo fmt\` before commit." | |
exit 1 | |
fi |
This file contains hidden or 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
;-----------------------------------------; | |
; Winkey PowerToys Run ; | |
;-----------------------------------------; | |
replaceStartMenu := true | |
LWin Up:: | |
{ | |
if (replaceStartMenu) { | |
if (A_PriorKey = "LWin") { |
NewerOlder