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
| powershell -command "scoop bucket add nerd-fonts" | |
| powershell -command "scoop install nerd-fonts/Monocraft-Nerd-Font nerd-fonts/Delugia-Mono-Nerd-Font nerd-fonts/Delugia-Nerd-Font nerd-fonts/Delugia-Nerd-Font-Book nerd-fonts/Delugia-Nerd-Font-Complete nerd-fonts/Delugia-Mono-Nerd-Font-Complete nerd-fonts/3270-NF-Mono nerd-fonts/Agave-NF-Mono nerd-fonts/AnonymousPro-NF-Mono nerd-fonts/Arimo-NF-Mono nerd-fonts/AurulentSansMono-NF-Mono nerd-fonts/BigBlueTerminal-NF-Mono nerd-fonts/BitstreamVeraSansMono-NF-Mono nerd-fonts/CascadiaCode-NF-Mono nerd-fonts/CodeNewRoman-NF-Mono nerd-fonts/ComicShannsMono-NF-Mono nerd-fonts/Cousine-NF-Mono nerd-fonts/DaddyTimeMono-NF-Mono nerd-fonts/DejaVuSansMono-NF-Mono nerd-fonts/DroidSansMono-NF-Mono nerd-fonts/FantasqueSansMono-NF-Mono nerd-fonts/FiraCode-NF-Mono nerd-fonts/FiraMono-NF-Mono nerd-fonts/Gohu-NF-Mono nerd-fonts/Hack-NF-Mono nerd-fonts/Hasklig-NF-Mono nerd-fonts/HeavyData-NF-Mono nerd-fonts/Hermit-NF-Mono nerd-fonts/IBMPlexMono-NF-Mono nerd-fonts/Inconsolata-NF-Mono n |
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
| { | |
| "theme": "Gruvbox Dark Hard", | |
| "base_keymap": "VSCode", | |
| "buffer_font_family": "BerkeleyMono Nerd Font", | |
| "buffer_font_size": 15, | |
| "vim_mode": true, | |
| "relative_line_numbers": true, | |
| "cursor_blink": false, | |
| "scrollbar": { | |
| "show": "never" |
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
| [ | |
| { | |
| "context": "Editor && VimControl && !VimWaiting && !menu", | |
| "bindings": { | |
| "ctrl-w z": "workspace::ToggleZoom", | |
| "ctrl-w t": "terminal_panel::ToggleFocus", | |
| "g ]": "editor::GoToDiagnostic", | |
| "g [": "editor::GoToPrevDiagnostic", | |
| "g r": "editor::FindAllReferences", | |
| "shift-k": "editor::Hover", |
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
| { | |
| "workbench.colorTheme": "Gruvbox Dark Hard", | |
| "vim.leader": "<space>", | |
| "editor.lineNumbers": "relative", | |
| "vim.insertModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": ["j", "k"], | |
| "after": ["<Esc>"] | |
| } | |
| ], |
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
| https://www.reddit.com/r/NixOS/comments/wvk8rb/fan_control_for_laptop_from_github/ | |
| { config, pkgs, ... }: | |
| let | |
| ... | |
| nbfc = import | |
| ( pkgs.fetchFromGitHub | |
| { | |
| owner = "nbfc-linux"; | |
| repo = "nbfc-linux"; |
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
| set-option -sa terminal-overrides ",xterm*:Tc" | |
| set -g mouse on | |
| unbind C-b | |
| set -g prefix C-Space | |
| bind C-Space send-prefix | |
| # Vim style pane selection | |
| bind h select-pane -L | |
| bind j select-pane -D |
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
| <VirtualHost *:80> | |
| DocumentRoot "C:/laragon/www/site/public" | |
| ServerName site.test | |
| ServerAlias *.site.test | |
| <Directory "C:/laragon/www/site/public"> | |
| AllowOverride All | |
| Require all granted | |
| </Directory> | |
| </VirtualHost> |
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
| CompileFlags: | |
| Add: [-std=c17] |
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
| { | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| flake-utils.url = "github:numtide/flake-utils"; | |
| android-nixpkgs.url = "github:tadfisher/android-nixpkgs"; | |
| nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.05"; | |
| }; | |
| outputs = { self, nixpkgs, flake-utils, android-nixpkgs, nixpkgs-stable }: | |
| let | |
| version = "1.1"; |
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
| nix copy --from https://cache.nixos.org $packageWithNotValidError |
NewerOlder