You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
|
|
# Just a quick ugly script to keep nvim-qt's window size.
|
|
# This also redirects error messages because of a bug in nvim-qt.
|
|
|
|
nvim-qt --geometry 1000x500 "$@" 2> /dev/null
|