This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" General config | |
"" Line numbers | |
"set number | |
"" Case-insensitive search | |
set ignorecase | |
""" But only if the search is all lower case, otherwise it (smartly) does | |
" search case-sensitievly | |
set smartcase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load_video | |
set gfxpayload=keep | |
insmod gzio | |
insmod part_gpt | |
insmod btrfs | |
set root='hd0,gpt3' | |
if [ x$feature_platform_search_hint = xy ]; then | |
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 731eff84-2c4f-4b87-a347-1f19a245e1ca | |
else | |
search --no-floppy --fs-uuid --set=root 731eff84-2c4f-4b87-a347-1f19a245e1ca |