Compare commits

...

3 Commits

Author SHA1 Message Date
Talia dba8c3f6e8 Set taskwarrior verbosity in zsh prompt to shut the fuck up 2024-06-24 16:20:27 +02:00
Talia 0591593c7b Add edit mode to zsh command line 2024-06-24 16:19:29 +02:00
Talia 337df78954 Add nvim svelte ls 2024-06-24 16:18:04 +02:00
2 changed files with 19 additions and 13 deletions

View File

@ -11,15 +11,17 @@ end)
local default = { on_attach = require 'lsp.attach' }
for _, language in ipairs {
"html",
"cssls",
"clangd",
"tsserver",
"cssls",
"html",
"lua_ls",
"solargraph",
"standardrb",
"svelte",
"tsserver",
"yamlls", -- bun install --global yaml-language-server
"zls",
"yamlls" -- bun install --global yaml-language-server
-- "ruby_lsp",
} do
config[language].setup(ensure_capabilities(default))
end

22
zshrc
View File

@ -16,6 +16,10 @@ setopt hist_find_no_dups
setopt prompt_subst
setopt hist_ignore_space
autoload -z edit-command-line
zle -N edit-command-line
bindkey -M vicmd '\' edit-command-line
autoload -U compinit; compinit
bindkey -v
@ -25,7 +29,7 @@ run_task_prompt=$?
task_prompt() {
if [ $run_task_prompt -eq 0 ]
then
tasks="$(task +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')"
tasks="$(task rc.verbose: +ACTIVE export | jq -r '.[].description' | sed 's/^/‣ /')"
if [ -n "$tasks" ]
then
echo "%F{black}$tasks\n%{%}"
@ -35,17 +39,17 @@ task_prompt() {
due_soon_prompt() {
if [ $run_task_prompt -eq 0 ]
then
if [ "$(task +PENDING due.before:30min count)" -gt 0 ]; then
echo "%F{red}%B$(task +PENDING +DUE count)%b "; return
if [ "$(task rc.verbose: +PENDING due.before:30min count)" -gt 0 ]; then
echo "%F{red}%B$(task rc.verbose: +PENDING +DUE count)%b "; return
fi
if [ "$(task +PENDING due.before:1h count)" -gt 0 ]; then
echo "%F{yellow}%B$(task +PENDING +DUE count)%b "; return
if [ "$(task rc.verbose: +PENDING due.before:1h count)" -gt 0 ]; then
echo "%F{yellow}%B$(task rc.verbose: +PENDING +DUE count)%b "; return
fi
if [ "$(task +PENDING due.before:3h count)" -gt 0 ]; then
echo "%F{green}%B$(task +PENDING +DUE count)%b "; return
if [ "$(task rc.verbose: +PENDING due.before:3h count)" -gt 0 ]; then
echo "%F{green}%B$(task rc.verbose: +PENDING +DUE count)%b "; return
fi
if [ "$(task +PENDING due.before:tomorrow count)" -gt 0 ]; then
echo "%F{black}%B$(task +PENDING +DUE count)%b "; return
if [ "$(task rc.verbose: +PENDING due.before:tomorrow count)" -gt 0 ]; then
echo "%F{black}%B$(task rc.verbose: +PENDING +DUE count)%b "; return
fi
fi
}