sheldon: fix setting to simple

This commit is contained in:
Kyure_A 2024-07-30 20:19:04 +09:00
parent edb6367c91
commit 718f450b97
2 changed files with 0 additions and 91 deletions

View file

@ -5,48 +5,10 @@
settings = { settings = {
shell = "zsh"; shell = "zsh";
plugins = { plugins = {
async = {
local = "~/.config/sheldon/async";
use = [ "*.zsh" ];
apply = [ "defer" ];
};
sync = {
local = "~/.config/sheldon/sync";
use = [ "*.zsh" ];
apply = [ "source" ];
};
zsh-defer = {
github = "romkatv/zsh-defer";
apply = [ "source" ];
};
add-zsh-hook = { inline = "autoload -U add-zsh-hook"; };
anyframe = { github = "mollifier/anyframe"; };
colors = { inline = "autoload -U colors && zsh-defer colors"; };
compinit = {
inline = "autoload -U compinit && zsh-defer compinit -C";
};
fzf = { github = "junegunn/fzf"; };
predict = { inline = "autoload -U predict-on && predict-on"; };
starship = {
inline = ''
eval "$(starship init zsh)"
'';
};
zcalc = { inline = "autoload -U zcalc"; };
zsh-async = { github = "mafredri/zsh-async"; };
zsh-complations = {
github = "zsh-users/zsh-completions";
apply = [ "defer" ];
};
zsh-history-substring-search = {
github = "zsh-users/zsh-history-substring-search";
apply = [ "defer" ];
};
zsh-syntax-highlighting = { zsh-syntax-highlighting = {
github = "zsh-users/zsh-syntax-highlighting"; github = "zsh-users/zsh-syntax-highlighting";
apply = [ "defer" ]; apply = [ "defer" ];
}; };
zsh-terminfo = { inline = "zmodload zsh/terminfo"; };
}; };
templates = { templates = {
defer = '' defer = ''

View file

@ -1,60 +1,7 @@
shell = "zsh" shell = "zsh"
[plugins]
[plugins.add-zsh-hook]
inline = "autoload -U add-zsh-hook"
[plugins.anyframe]
github = "mollifier/anyframe"
[plugins.async]
apply = ["defer"]
local = "~/.config/sheldon/async"
use = ["*.zsh"]
[plugins.colors]
inline = "autoload -U colors && zsh-defer colors"
[plugins.compinit]
inline = "autoload -U compinit && zsh-defer compinit -C"
[plugins.fzf]
github = "junegunn/fzf"
[plugins.predict]
inline = "autoload -U predict-on && predict-on"
[plugins.starship]
inline = "eval \"$(starship init zsh)\"\n"
[plugins.sync]
apply = ["source"]
local = "~/.config/sheldon/sync"
use = ["*.zsh"]
[plugins.zcalc]
inline = "autoload -U zcalc"
[plugins.zsh-async]
github = "mafredri/zsh-async"
[plugins.zsh-complations]
apply = ["defer"]
github = "zsh-users/zsh-completions"
[plugins.zsh-defer]
apply = ["source"]
github = "romkatv/zsh-defer"
[plugins.zsh-history-substring-search]
apply = ["defer"]
github = "zsh-users/zsh-history-substring-search"
[plugins.zsh-syntax-highlighting] [plugins.zsh-syntax-highlighting]
apply = ["defer"] apply = ["defer"]
github = "zsh-users/zsh-syntax-highlighting" github = "zsh-users/zsh-syntax-highlighting"
[plugins.zsh-terminfo]
inline = "zmodload zsh/terminfo"
[templates] [templates]
defer = "{{ hooks | get: \"pre\" | nl }}{% for file in files %}zsh-defer source \"{{ file }}\"\n{% endfor %}{{ hooks | get: \"post\" | nl }}" defer = "{{ hooks | get: \"pre\" | nl }}{% for file in files %}zsh-defer source \"{{ file }}\"\n{% endfor %}{{ hooks | get: \"post\" | nl }}"