Skip to content

Instantly share code, notes, and snippets.

@mbrc12
Created August 9, 2021 13:19
Show Gist options
  • Save mbrc12/7d6dd030ac73e38b8ad45a3daad50c69 to your computer and use it in GitHub Desktop.
Save mbrc12/7d6dd030ac73e38b8ad45a3daad50c69 to your computer and use it in GitHub Desktop.
Goneovim startup script for fish
#!/bin/fish
if test (count $argv) -gt 0
goneovim --maximized (realpath $argv[1]) &> /dev/null &; disown
else
goneovim --maximized (realpath .) &> /dev/null &; disown
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment