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
|
berkeley-mono
|
||||||
jetbrains-mono
|
jetbrains-mono
|
||||||
noto-fonts
|
noto-fonts
|
||||||
unifont
|
|
||||||
|
|
||||||
(nerdfonts.override {
|
(nerdfonts.override {
|
||||||
fonts = [
|
fonts = [
|
||||||
|
|
|
@ -81,7 +81,9 @@
|
||||||
{:expr true})
|
{:expr true})
|
||||||
(keymap.set :i :<S-Tab> "pumvisible() ? \"\\<C-p>\" : \"\\<S-Tab>\""
|
(keymap.set :i :<S-Tab> "pumvisible() ? \"\\<C-p>\" : \"\\<S-Tab>\""
|
||||||
{:expr true})
|
{: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]
|
(fn mod.lsp-attach [client bufnr]
|
||||||
(keymap.set :n :<leader>t
|
(keymap.set :n :<leader>t
|
||||||
|
|
|
@ -340,14 +340,13 @@
|
||||||
"🭺"
|
"🭺"
|
||||||
"🭻"]}
|
"🭻"]}
|
||||||
:provider (fn [self]
|
:provider (fn [self]
|
||||||
(let [i (+ (math.floor (* (/ (- self.current-line
|
(let [scrollbar-icons self.scrollbar-icons-block
|
||||||
|
i (+ (math.floor (* (/ (- self.current-line
|
||||||
1)
|
1)
|
||||||
self.total-lines)
|
self.total-lines)
|
||||||
(length self.scrollbar-icons-block)))
|
(length scrollbar-icons)))
|
||||||
1)
|
1)
|
||||||
new-scrollbar (. self
|
new-scrollbar (. scrollbar-icons i)]
|
||||||
:scrollbar-icons-block
|
|
||||||
i)]
|
|
||||||
(string.rep new-scrollbar 2)))
|
(string.rep new-scrollbar 2)))
|
||||||
:hl {:fg colors.purple}})
|
:hl {:fg colors.purple}})
|
||||||
;; Search count
|
;; Search count
|
||||||
|
@ -385,4 +384,3 @@
|
||||||
:hl {:fg (. colors fg) :bg (. colors bg) :bold true}})
|
:hl {:fg (. colors fg) :bg (. colors bg) :bold true}})
|
||||||
|
|
||||||
mod)
|
mod)
|
||||||
|
|
||||||
|
|
|
@ -155,8 +155,7 @@
|
||||||
"Apple Symbols"
|
"Apple Symbols"
|
||||||
"Apple Color Emoji"
|
"Apple Color Emoji"
|
||||||
"Noto Sans Symbols"
|
"Noto Sans Symbols"
|
||||||
"Noto Sans Symbols2"
|
"Noto Sans Symbols 2"])
|
||||||
:Unifont])
|
|
||||||
:font_size 13
|
:font_size 13
|
||||||
:line_height 0.95
|
:line_height 0.95
|
||||||
:freetype_load_target :Light
|
:freetype_load_target :Light
|
||||||
|
|
Loading…
Reference in a new issue