dotfiles

Personal dotfiles.
git clone git://vcs.sapka.me/dotfiles
Log | Files | Refs | Submodules

commit 212e56eb8e8e107fd1975009258f7c73e167f42b
parent e8a25aac23f6db3abf3d0b7b5c0b588eee45d84d
Author: Michal Sapka <michal@sapka.me>
Date:   Sun, 22 May 2022 19:59:08 +0200

Use cool icons

Diffstat:
Mnvim/init.lua | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nvim/init.lua b/nvim/init.lua @@ -173,8 +173,8 @@ cmp.setup { fields = { "kind", "abbr", "menu" }, format = function(entry, vim_item) -- Kind icons - -- vim_item.kind = string.format("%s", kind_icons[vim_item.kind]) - vim_item.kind = string.format('%s', vim_item.kind) -- This concatonates the icons with the name of the item kind + vim_item.kind = string.format("%s", kind_icons[vim_item.kind]) +-- vim_item.kind = string.format('%s', vim_item.kind) -- This concatonates the icons with the name of the item kind vim_item.menu = ({ luasnip = "[Snip]", nvim_lsp = "[LSP]",