Files
linux-config/scripts/executable_vim-man
2019-05-18 00:37:10 -04:00

5 lines
112 B
Bash

#!/bin/bash
man_choice=$(apropos . | awk '{ print $1 }' | dmenu -i)
nvim -c ":Man $man_choice" -c "resize 100"