Commit after not doing it for weeks
This commit is contained in:
parent
ec9ca93748
commit
9e853e9684
28 changed files with 178 additions and 103 deletions
home/features/neovim/config/lua/my
|
@ -80,7 +80,7 @@ M.unicode = {
|
|||
-- }}}
|
||||
-- {{{ Common relations
|
||||
{ "sim", "∼" }, -- similarity
|
||||
{ "simeq", "≃" },
|
||||
{ "simeq", "≃" }, -- isomorphism
|
||||
{ "cong", "≅" }, -- congruence
|
||||
|
||||
{ "iin", "∈" }, -- [I]ncluded [i][n]
|
||||
|
|
|
@ -2,7 +2,8 @@ local runtime = require("my.tempest")
|
|||
|
||||
local M = {
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
-- event = "VeryLazy",
|
||||
lazy = true,
|
||||
cond = runtime.blacklist("vscode"),
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,10 @@ M.setup = function(config)
|
|||
local augroup = vim.api.nvim_create_augroup("M", {})
|
||||
|
||||
local on_vimenter = function()
|
||||
if vim.o.filetype ~= "" then
|
||||
return
|
||||
end
|
||||
|
||||
if vim.fn.argc() > 0 then
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue