This commit is contained in:
ElKowar 2022-03-18 12:56:27 +01:00
parent 50c462a55f
commit 12b80a6351
4 changed files with 9 additions and 3 deletions

View file

@ -78,6 +78,9 @@
;:disabledRules {:de-DE [":~/.config/ltex-ls/disabledRules.txt"]} ;:disabledRules {:de-DE [":~/.config/ltex-ls/disabledRules.txt"]}
;:hiddenFalsePositives {:de-DE [":~/.config/ltex-ls/hiddenFalsePositives.txt"]} ;:hiddenFalsePositives {:de-DE [":~/.config/ltex-ls/hiddenFalsePositives.txt"]}
;:additionalRules {:motherTongue "de-DE"}}}}) ;:additionalRules {:motherTongue "de-DE"}}}})
(init-lsp :vls)
;(init-lsp :clangd)
;(init-lsp :ccls)
(init-lsp :powershell_es {:bundle_path "/home/leon/powershell"}) (init-lsp :powershell_es {:bundle_path "/home/leon/powershell"})

View file

@ -49,8 +49,10 @@
(defn map-values [f t] (defn map-values [f t]
"Map over the values of a table, keeping the keys intact" "Map over the values of a table, keeping the keys intact"
(collect [k v (pairs t)] (let [tbl {}]
k (f v))) (each [k v (pairs t)] (tset tbl k (f v)))
tbl))
(defn without-keys [keys t] (defn without-keys [keys t]

View file

@ -253,6 +253,7 @@ bar {
#font "Terminus (TTF)" #font "Terminus (TTF)"
height 20 height 20
colors { colors {
statusline #ebdbb2 statusline #ebdbb2
background #1d202100 background #1d202100

View file

@ -2,7 +2,7 @@
# history config # history config
HISTSIZE=50000 HISTSIZE=50000
SAVEHIST=50000 SAVEHIST=50000
HISTFILE="$XDG_CACHE_HOME"/zsh/history HISTFILE="/home/leon/.cache/zsh/history"
setopt HIST_SAVE_NO_DUPS setopt HIST_SAVE_NO_DUPS
setopt HIST_IGNORE_ALL_DUPS setopt HIST_IGNORE_ALL_DUPS
#setopt INC_APPEND_HISTORY #setopt INC_APPEND_HISTORY