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
#!/bin/bash | |
cd ~/jolts/ | |
result=$(ag -G .md$ --noheading . | \ | |
fzf --ansi --delimiter=: \ | |
--preview 'bat --color always {1} -H {2} -n' \ | |
--preview-window 'top,50%,border-bottom,+0+3/3') | |
if [ ! -z "$result" ]; then |
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
Equipment { ^ [ | |
* Gear | |
] | |
} | |
Gear(Equipment) { ^ [ | |
* Storage | |
* Food | |
* HolyItems | |
* Tools |
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
"============================================================================= | |
" vimwiki.vim --- SpaceVim Vimwiki layer | |
" Copyright (c) 2022-2023 Urshina | |
" Author: Urshina | |
" URL: https://spacevim.org | |
" License: GPLv3 | |
"============================================================================= | |
"" |
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
# Kakoune citylights color scheme | |
# For Code | |
face value rgb:0fffaa+b | |
face type rgb:eeefa3 | |
face identifier rgb:ff0000 | |
face string rgb:eeaaaa,rgb:111111 | |
face error default,red | |
face keyword rgb:a1f0a1+b | |
face operator rgb:eeff33 |
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
#include "Base.h" | |
#include "FileSystem.h" | |
#include "Properties.h" | |
#include "Stream.h" | |
#include "Platform.h" | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#ifdef WIN32 |