Compare commits

..

No commits in common. "6d448e865e96895ccc04c1f2f1ec2e957cf78c3d" and "82ca9fa3281939062b4a530690b21ff5d1d2436b" have entirely different histories.

2 changed files with 1 additions and 47 deletions

View File

@ -1,40 +0,0 @@
#!/usr/bin/env sh
if [ $# -eq 0 ]; then
cd "$SECOND_BRAIN"/blog || exit 1
nvim
exit 0
fi
open_file() {
cd "$SECOND_BRAIN"/blog || exit 1
nvim "${1}.md"
}
remove_file() {
cd "$SECOND_BRAIN"/blog || exit 1
if [ -f "${1}.md" ]; then
rm "${1}.md"
else
echo "File didn't exist"
fi
}
if [ $# -ne 2 ]; then
echo "You need to provide action and file name."
exit 1
fi
case "$1" in
edit)
open_file "$2"
exit 0
;;
rm)
remove_file "$2"
exit 0
;;
*)
exit 1
;;
esac

View File

@ -6,13 +6,7 @@
enableCompletion = true;
history.path = "${config.xdg.dataHome}/zsh/history";
dotDir = ".config/zsh";
shellAliases = {
lg = "lazygit";
j =
"cd $(zoxide query --list | fzf --prompt 'Directory: ' -i --reverse --layout=reverse --border=rounded --info=inline --preview 'eza -A --tree -L 1 {}')";
gj = ''
cd $(find ${config.home.homeDirectory} -name .git -type d -exec dirname {} \; -prune | fzf --prompt "Directory: " -i --reverse --layout=reverse --border=rounded --info=inline --preview "eza -A --tree -L 1 {}")'';
};
shellAliases = { lg = "lazygit"; };
envExtra = ''
# NNN settings
export NNN_FIFO="/tmp/nnn.fifo"