chore(nvim): more emoji

main
sudo pacman -Syu 2024-01-12 17:27:00 +07:00
parent d7493de6a8
commit d28fdfe8a0
2 changed files with 7 additions and 3 deletions

View File

@ -453,6 +453,13 @@ require("lazy").setup({
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
end
-- https://neovim.io/doc/user/diagnostic.html#diagnostic-api
vim.diagnostic.config({
virtual_text = {
prefix = "🪓",
},
})
end,
},
})

View File

@ -1,9 +1,6 @@
# vim: set filetype=zsh:
# Put this on bottom of ~/.zshrc
# https://lgug2z.com/articles/sensible-wordchars-for-most-developers/
export WORDCHARS="*?[]~=&;!#$%^(){}<>"
# https://www.topbug.net/blog/2016/09/27/make-gnu-less-more-powerful/
export LESS="-RF -i -K -s -x2 --wordwrap"