this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ft: add abbreviations to Dhall

+12 -8
+9 -8
nix/.config/nixpkgs/darwin/configuration.nix
··· 22 22 bat 23 23 coreutils 24 24 direnv 25 - dnsmasq 26 25 entr 27 26 findutils 28 27 fzy ··· 89 88 }; 90 89 }; 91 90 91 + programs.gnupg = { 92 + agent.enable = false; 93 + agent.enableSSHSupport = true; 94 + }; 95 + 96 + programs.fish = { 97 + enable = true; 98 + }; 99 + 92 100 nix.package = pkgs.nixStable; 93 101 # nix.useSandbox = true; 94 102 nix.sandboxPaths = [ ··· 99 107 "/private/var/tmp" 100 108 "/usr/bin/env" 101 109 ]; 102 - 103 - programs.gnupg = { 104 - agent.enable = false; 105 - agent.enableSSHSupport = true; 106 - }; 107 - 108 - programs.fish.enable = true; 109 110 110 111 # Used for backwards compatibility, please read the changelog before changing. 111 112 # $ darwin-rebuild changelog
+3
vim/.config/nvim/after/ftplugin/dhall.vim
··· 1 1 setlocal shiftwidth=2 2 2 setlocal commentstring=--\ %s 3 3 4 + inoreabbrev <buffer> \( λ( 5 + inoreabbrev <buffer> -> → 6 + 4 7 let b:undo_ftplugin = 'setl sw&'