Compare commits
3 commits
1b094d08b5
...
235883201d
Author | SHA1 | Date | |
---|---|---|---|
235883201d | |||
9023a3349b | |||
b9ec7138c5 |
6 changed files with 2097 additions and 4 deletions
|
@ -76,3 +76,10 @@ function reldate() {
|
|||
[ "$TERM" = "xterm-kitty" ] && alias ssh="TERM=xterm ssh"
|
||||
|
||||
alias strip_jira="sed 's/\[\{0,1\}[a-zA-Z]*-[0-9]*\]\{0,1\}//g'"
|
||||
|
||||
export FZF_DEFAULT_OPTS=" \
|
||||
--color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \
|
||||
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
|
||||
--color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
|
||||
--color=selected-bg:#45475a \
|
||||
--color=border:#313244,label:#cdd6f4"
|
||||
|
|
1
home/private_dot_config/bat/config
Normal file
1
home/private_dot_config/bat/config
Normal file
|
@ -0,0 +1 @@
|
|||
--theme="Catppuccin Mocha"
|
2081
home/private_dot_config/bat/themes/Catppuccin Mocha.tmTheme
Normal file
2081
home/private_dot_config/bat/themes/Catppuccin Mocha.tmTheme
Normal file
File diff suppressed because it is too large
Load diff
|
@ -4,7 +4,7 @@ dir = "~/notebook"
|
|||
[note]
|
||||
language = "en"
|
||||
default-title = "untitled"
|
||||
filename = "{{id}}-{{slug title}}"
|
||||
filename = "{{format-date now 'timestamp'}}-{{id}}"
|
||||
extension = "md"
|
||||
template = "default.md"
|
||||
id-charset = "alphanum"
|
||||
|
@ -32,4 +32,5 @@ diff = 'jj diff'
|
|||
daily = 'zk new --no-input "$ZK_NOTEBOOK_DIR/journal/daily"'
|
||||
|
||||
[tool]
|
||||
editor = "hx --hsplit journal/tasks.xit"
|
||||
editor = "hx"
|
||||
fzf-preview = "bat -p --color always {-1}"
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
created: {{ format-date now "%Y-%m-%dT%H:%M" }}
|
||||
---
|
||||
|
||||
# {{ title }}
|
||||
|
||||
{{ format-date now }}
|
||||
|
||||
{{ content }}
|
||||
|
|
|
@ -6,6 +6,7 @@ set -e
|
|||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
brew install \
|
||||
age \
|
||||
bat \
|
||||
bzip2 \
|
||||
cmus \
|
||||
curl \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue