Jared Miller
Jared Miller
IDK the best presentation for this, but I'm interested in developing it and maybe can gather some input from y'all. Between a dark office, a bright office, and an incredibly...
I have considered working your theme into a fork of vim-rnb, as it's a really nice way to 1) organize your theme and 2) generate the vimscript Merely bringing it...
`curl -s wttr.in/KTVC?format=4` `> KTVC: ⛅️ 🌡️+22°C 🌬️↘19km/h` I can force it, but then the format isn't respected and I get the default output. `curl -s wttr.in/KTVC?u&format=4` Curious if something...
This is me running a shell script from `tintin++`, a mud client (for the terminal). I noticed this behavior recently, and then tested `fzf` to see how it handles it....
I know this is probably not the correct approach, but I'd like to be able to define a few ignores. Particularly, a file I'm working in right now is littered...
I quite like getting thinner columns on the "default view" (whatever you call the view right when you run tig), and I was wondering what control you have over customizing...
I think for me, the most useful list would be one that represents the order I added. At least that's what I'm currently thinking. There'd be no categorization at this...
And maybe it shouldn't, but I wanted to bring it up in case it hasn't been before: Here's an example: ``` [......] they provide a standard way to include non-standard...
Instead of adding many configurations to the user's alacritty.yml, you could simply append (or replace) an `include`: ``` import: - /home/jtm/.config/alacritty/themes/dracula.yml ``` Making a 1 line change seems pretty solid....
```bash #!/bin/sh if [ "$#" -eq 0 ] then echo "Starting new Emacs process ..." >&2 emacs -nw elif emacsclient -t -n "$@" 2> /dev/null then echo "Opened $@ in...