mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
merge
This commit is contained in:
parent
50c462a55f
commit
12b80a6351
4 changed files with 9 additions and 3 deletions
|
@ -78,6 +78,9 @@
|
|||
;:disabledRules {:de-DE [":~/.config/ltex-ls/disabledRules.txt"]}
|
||||
;:hiddenFalsePositives {:de-DE [":~/.config/ltex-ls/hiddenFalsePositives.txt"]}
|
||||
;:additionalRules {:motherTongue "de-DE"}}}})
|
||||
(init-lsp :vls)
|
||||
;(init-lsp :clangd)
|
||||
;(init-lsp :ccls)
|
||||
|
||||
|
||||
(init-lsp :powershell_es {:bundle_path "/home/leon/powershell"})
|
||||
|
|
|
@ -49,8 +49,10 @@
|
|||
|
||||
(defn map-values [f t]
|
||||
"Map over the values of a table, keeping the keys intact"
|
||||
(collect [k v (pairs t)]
|
||||
k (f v)))
|
||||
(let [tbl {}]
|
||||
(each [k v (pairs t)] (tset tbl k (f v)))
|
||||
tbl))
|
||||
|
||||
|
||||
|
||||
(defn without-keys [keys t]
|
||||
|
|
|
@ -253,6 +253,7 @@ bar {
|
|||
#font "Terminus (TTF)"
|
||||
height 20
|
||||
|
||||
|
||||
colors {
|
||||
statusline #ebdbb2
|
||||
background #1d202100
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# history config
|
||||
HISTSIZE=50000
|
||||
SAVEHIST=50000
|
||||
HISTFILE="$XDG_CACHE_HOME"/zsh/history
|
||||
HISTFILE="/home/leon/.cache/zsh/history"
|
||||
setopt HIST_SAVE_NO_DUPS
|
||||
setopt HIST_IGNORE_ALL_DUPS
|
||||
#setopt INC_APPEND_HISTORY
|
||||
|
|
Loading…
Reference in a new issue