Personal dotfiles
0
fork

Configure Feed

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

Complete alacritty setup;

+90 -1
+1 -1
alacritty/alacritty.yml.template
··· 150 150 #style: Bold Italic 151 151 152 152 # Point size 153 - size: 16.0 153 + size: ${FONT_SIZE} 154 154 155 155 # Offset is the extra space around each character. `offset.y` can be thought 156 156 # of as modifying the line spacing, and `offset.x` as modifying the letter
+74
fish/completions/alacritty.fish
··· 1 + # Meta 2 + complete -c alacritty \ 3 + -s "v" \ 4 + -l "version" \ 5 + -d "Prints version information" 6 + complete -c alacritty \ 7 + -s "h" \ 8 + -l "help" \ 9 + -d "Prints help information" 10 + 11 + # Config 12 + complete -c alacritty \ 13 + -f \ 14 + -l "config-file" \ 15 + -d "Specify an alternative config file" 16 + complete -c alacritty \ 17 + -s "t" \ 18 + -l "title" \ 19 + -d "Defines the window title" 20 + complete -c alacritty \ 21 + -l "class" \ 22 + -d "Defines the window class" 23 + complete -c alacritty \ 24 + -l "embed" \ 25 + -d "Defines the X11 window ID (as a decimal integer) to embed Alacritty within" 26 + complete -c alacritty \ 27 + -x \ 28 + -a '(__fish_complete_directories (commandline -ct))' \ 29 + -l "working-directory" \ 30 + -d "Start shell in specified directory" 31 + complete -c alacritty \ 32 + -l "hold" \ 33 + -d "Remain open after child process exits" 34 + complete -c alacritty \ 35 + -s "o" \ 36 + -l "option" \ 37 + -d "Override config file options" 38 + 39 + # Output 40 + complete \ 41 + -c alacritty \ 42 + -l "print-events" \ 43 + -d "Print all events to stdout" 44 + complete \ 45 + -c alacritty \ 46 + -s "q" \ 47 + -d "Reduces the level of verbosity (min is -qq)" 48 + complete \ 49 + -c alacritty \ 50 + -s "qq" \ 51 + -d "Reduces the level of verbosity" 52 + complete \ 53 + -c alacritty \ 54 + -s "v" \ 55 + -d "Increases the level of verbosity" 56 + complete \ 57 + -c alacritty \ 58 + -s "vv" \ 59 + -d "Increases the level of verbosity" 60 + complete \ 61 + -c alacritty \ 62 + -s "vvv" \ 63 + -d "Increases the level of verbosity" 64 + 65 + complete \ 66 + -c alacritty \ 67 + -l "ref-test" \ 68 + -d "Generates ref test" 69 + 70 + complete \ 71 + -c alacritty \ 72 + -s "e" \ 73 + -l "command" \ 74 + -d "Execute command (must be last arg)"
+15
install/alacritty
··· 1 + #!/bin/bash 2 + set -e 3 + cd $(dirname $0) 4 + ./rust 5 + if [ "$(uname)" = 'Darwin' ]; then 6 + cd ~/.local 7 + if [ ! -d alacritty ]; then 8 + git clone git@github.com:alacritty/alacritty 9 + fi 10 + cd alacritty 11 + make app 12 + cp -r target/release/osx/Alacritty.app /Applications/ 13 + else 14 + cargo install alacritty 15 + fi