AutoYADM commit: 2025-02-12 20:45:06
This commit is contained in:
parent
6b1693c67a
commit
2674bad373
5 changed files with 24 additions and 7 deletions
|
@ -3,6 +3,7 @@ theme = "ashen"
|
||||||
[editor]
|
[editor]
|
||||||
line-number = "relative"
|
line-number = "relative"
|
||||||
undercurl = true
|
undercurl = true
|
||||||
|
true-color = true
|
||||||
# Not sure if I should enable this by default...
|
# Not sure if I should enable this by default...
|
||||||
# maybe it's better to just get used to using the clipboards separately?
|
# maybe it's better to just get used to using the clipboards separately?
|
||||||
# Wouldn't be a bad idea to encorporate two clipboards into my workflow,
|
# Wouldn't be a bad idea to encorporate two clipboards into my workflow,
|
||||||
|
|
|
@ -4,7 +4,13 @@
|
||||||
|
|
||||||
## 🎨 Installation
|
## 🎨 Installation
|
||||||
|
|
||||||
Please download the `ashen.yazi` folder and place it inside
|
You can install Ashen with Yazi's package manager:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ya pack -a ashen-org/ashen:ashen
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternatively, download the `ashen.yazi` folder and place it inside
|
||||||
`~/.config/yazi/flavors/`.
|
`~/.config/yazi/flavors/`.
|
||||||
|
|
||||||
## ⚙️ Usage
|
## ⚙️ Usage
|
||||||
|
|
|
@ -50,5 +50,5 @@ hash = "ada10d1213f2117878e0fd90df708619"
|
||||||
|
|
||||||
[[flavor.deps]]
|
[[flavor.deps]]
|
||||||
use = "ashen-org/ashen:ashen"
|
use = "ashen-org/ashen:ashen"
|
||||||
rev = "ded1f4e"
|
rev = "143aad5"
|
||||||
hash = "dd7112a30425b077d45359e1cad20759"
|
hash = "a6f097910912721681300869a94d1fd8"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[plugin]
|
[plugin]
|
||||||
prepend_previewers = [
|
prepend_previewers = [
|
||||||
{ name = "*.md", run = "glow" },
|
# { name = "*.md", run = "glow" },
|
||||||
{ mime = "text/csv", run = "miller" },
|
{ mime = "text/csv", run = "miller" },
|
||||||
{ mime = "audio/*", run = "exifaudio" },
|
{ mime = "audio/*", run = "exifaudio" },
|
||||||
{ mime = "application/*zip", run = "ouch" },
|
{ mime = "application/*zip", run = "ouch" },
|
||||||
|
|
16
.zshrc
16
.zshrc
|
@ -8,7 +8,18 @@ source $ZSH/oh-my-zsh.sh
|
||||||
ASHEN="$HOME/dev/ashen/ashen.nvim"
|
ASHEN="$HOME/dev/ashen/ashen.nvim"
|
||||||
source $ASHEN/extras/fzf/ashen.sh
|
source $ASHEN/extras/fzf/ashen.sh
|
||||||
unset LS_COLORS
|
unset LS_COLORS
|
||||||
export EDITOR="hx"
|
|
||||||
|
if whence -w helix &>/dev/null; then
|
||||||
|
# Stable
|
||||||
|
HELIX="helix"
|
||||||
|
export EDITOR="helix"
|
||||||
|
alias hx="helix"
|
||||||
|
else
|
||||||
|
# Latest
|
||||||
|
HELIX="hx"
|
||||||
|
alias helix="hx"
|
||||||
|
export EDITOR="hx"
|
||||||
|
fi
|
||||||
|
|
||||||
# Note: if I do get Obsidian Bridge working, this is
|
# Note: if I do get Obsidian Bridge working, this is
|
||||||
# a really bad way to load the env because
|
# a really bad way to load the env because
|
||||||
|
@ -41,8 +52,7 @@ alias vimclean='nvim --clean'
|
||||||
alias catkeys='/bin/cat -v'
|
alias catkeys='/bin/cat -v'
|
||||||
alias e="$EDITOR"
|
alias e="$EDITOR"
|
||||||
alias edit="$EDITOR"
|
alias edit="$EDITOR"
|
||||||
# alias hx="helix"
|
alias h="$HELIX"
|
||||||
alias h="hx"
|
|
||||||
alias v='nvim'
|
alias v='nvim'
|
||||||
alias vim='nvim'
|
alias vim='nvim'
|
||||||
alias vi='nvim'
|
alias vi='nvim'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue