config: remove alt+o keymap
parent
4190e0d43d
commit
0b50a2130b
|
@ -5,8 +5,8 @@ include mocha.conf
|
|||
# kitty +list-fonts --psnames
|
||||
font_family Maple Mono
|
||||
bold_font Maple Mono Bold
|
||||
italic_font Victor Mono Italic
|
||||
bold_italic_font Maple Mono Bold Italic
|
||||
italic_font MonoLisa Light Italic
|
||||
bold_italic_font MonoLisa Bold Italic
|
||||
font_size 14.0
|
||||
|
||||
# https://github.com/ryanoasis/nerd-fonts/wiki/Glyph-Sets-and-Code-Points
|
||||
|
@ -26,10 +26,12 @@ symbol_map U+EA60-U+EBEB Symbols Nerd Font Mono
|
|||
symbol_map U+E276C-U+2771 Symbols Nerd Font Mono
|
||||
symbol_map U+2500-U+259F Symbols Nerd Font Mono
|
||||
|
||||
font_features MapleMono-Regular -calt +cv03 +zero
|
||||
font_features MapleMono-Regular_Bold -calt +cv03 +zero
|
||||
font_features MapleMono-Italic -calt +cv03 +zero
|
||||
font_features MapleMono-Italic_Bold-Italic -calt +cv03 +zero
|
||||
font_features MapleMono-Regular +cv03 +zero
|
||||
font_features MapleMono-Regular_Bold +cv03 +zero
|
||||
font_features MapleMono-Italic +cv03 +zero
|
||||
font_features MapleMono-Italic_Bold-Italic +cv03 +zero
|
||||
font_features MonoLisaItalic-Light +ss02 +ss07 +ss08 +ss15 +ss16
|
||||
font_features MonoLisaItalic-Bold +ss02 +ss07 +ss08 +ss15 +ss16
|
||||
|
||||
modify_font cell_height 120%
|
||||
|
||||
|
@ -78,7 +80,6 @@ map super+e open_url_with_hints
|
|||
map alt+n launch --cwd=oldest --location=vsplit
|
||||
map alt+m launch --cwd=oldest --location=hsplit
|
||||
map alt+p next_window
|
||||
map alt+o launch --cwd=oldest --type=tab --location=neighbor
|
||||
map alt+[ previous_tab
|
||||
map alt+] next_tab
|
||||
|
||||
|
|
|
@ -466,7 +466,7 @@ require("lazy").setup({
|
|||
enabled = true,
|
||||
disable = function(lang, bufnr)
|
||||
-- Skip big files with many lines
|
||||
return vim.api.nvim_buf_line_count(bufnr) > 2000
|
||||
return vim.api.nvim_buf_line_count(bufnr) > 10000
|
||||
end,
|
||||
},
|
||||
})
|
||||
|
|
|
@ -145,11 +145,6 @@ return {
|
|||
mods = "ALT",
|
||||
action = act.ActivatePaneDirection("Next"),
|
||||
},
|
||||
{
|
||||
key = "o",
|
||||
mods = "ALT",
|
||||
action = act.SpawnCommandInNewTab({}),
|
||||
},
|
||||
{
|
||||
key = "[",
|
||||
mods = "ALT",
|
||||
|
|
Loading…
Reference in New Issue