Skip to content

Instantly share code, notes, and snippets.

@ajgringo619
ajgringo619 / configuration.nix
Last active September 19, 2025 11:20
My NixOS config using Hyper-V
# NOTE: this config contains a fair amount of user-specific settings, but I
# left them in as they provide working examples (Samba, systemd services, etc.).
#
# This config is designed for the Budgie Desktop, but can easily be adapted to
# any DE. For Hyper-V to work, blacklisting the hyperv_fb module was critical.
#
# I am also using GRUB instead of the default systemd-boot.
{ config, pkgs, ... }:
@tuxfight3r
tuxfight3r / vim-shortcuts.md
Last active March 10, 2026 18:51
VIM SHORTCUTS

VIM KEYBOARD SHORTCUTS

MOVEMENT

h        -   Move left
j        -   Move down
k        -   Move up
l        -   Move right
$        -   Move to end of line
0        -   Move to beginning of line (including whitespace)