fonts: remove unifont
This commit is contained in:
parent
91707ec53e
commit
3b9b917b94
4 changed files with 8 additions and 10 deletions
|
@ -25,7 +25,6 @@ in
|
|||
berkeley-mono
|
||||
jetbrains-mono
|
||||
noto-fonts
|
||||
unifont
|
||||
|
||||
(nerdfonts.override {
|
||||
fonts = [
|
||||
|
|
|
@ -81,7 +81,9 @@
|
|||
{:expr true})
|
||||
(keymap.set :i :<S-Tab> "pumvisible() ? \"\\<C-p>\" : \"\\<S-Tab>\""
|
||||
{:expr true})
|
||||
(keymap.set :i :<CR> "v:lua._G.mini_cr_action()" {:expr true}))
|
||||
(keymap.set :i :<CR> "v:lua._G.mini_cr_action()" {:expr true})
|
||||
(keymap.set :i :<esc> "pumvisible() ? \"\\<C-y>\" : \"\\<esc>\""
|
||||
{:expr true}))
|
||||
|
||||
(fn mod.lsp-attach [client bufnr]
|
||||
(keymap.set :n :<leader>t
|
||||
|
|
|
@ -340,14 +340,13 @@
|
|||
"🭺"
|
||||
"🭻"]}
|
||||
:provider (fn [self]
|
||||
(let [i (+ (math.floor (* (/ (- self.current-line
|
||||
(let [scrollbar-icons self.scrollbar-icons-block
|
||||
i (+ (math.floor (* (/ (- self.current-line
|
||||
1)
|
||||
self.total-lines)
|
||||
(length self.scrollbar-icons-block)))
|
||||
(length scrollbar-icons)))
|
||||
1)
|
||||
new-scrollbar (. self
|
||||
:scrollbar-icons-block
|
||||
i)]
|
||||
new-scrollbar (. scrollbar-icons i)]
|
||||
(string.rep new-scrollbar 2)))
|
||||
:hl {:fg colors.purple}})
|
||||
;; Search count
|
||||
|
@ -385,4 +384,3 @@
|
|||
:hl {:fg (. colors fg) :bg (. colors bg) :bold true}})
|
||||
|
||||
mod)
|
||||
|
||||
|
|
|
@ -155,8 +155,7 @@
|
|||
"Apple Symbols"
|
||||
"Apple Color Emoji"
|
||||
"Noto Sans Symbols"
|
||||
"Noto Sans Symbols2"
|
||||
:Unifont])
|
||||
"Noto Sans Symbols 2"])
|
||||
:font_size 13
|
||||
:line_height 0.95
|
||||
:freetype_load_target :Light
|
||||
|
|
Loading…
Reference in a new issue