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
//mtx_ is a Boost mutex | |
void Parser::put_into_internal_string_stream(std::string& str) { | |
mtx_.lock(); | |
internal_ss_.clear(); | |
internal_ss_.str(internal_ss_.str() + str); | |
mtx_.unlock(); | |
} |
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
setopt PROMPT_SUBST | |
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH" | |
alias v="nvim" | |
alias brow="arch --x86_64 /usr/local/Homebrew/bin/brew" | |
alias cd..="cd .." | |
#dirs is used because I want full path, but I want my home directory to be replaced by ~ | |
PS1=" |