From 372f9187f1441259a02a6cd5d915ddb71944c98e Mon Sep 17 00:00:00 2001 From: Sayanta <68754658+sayanta01@users.noreply.github.com> Date: Sun, 23 Feb 2025 02:56:43 +0530 Subject: [PATCH] Update init.lua --- init.lua | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/init.lua b/init.lua index 5cac3d14601..c3e9076732e 100644 --- a/init.lua +++ b/init.lua @@ -141,12 +141,6 @@ vim.opt.timeoutlen = 300 vim.opt.splitright = true vim.opt.splitbelow = true --- Sets how neovim will display certain whitespace characters in the editor. --- See `:help 'list'` --- and `:help 'listchars'` -vim.opt.list = true -vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } - -- Preview substitutions live, as you type! vim.opt.inccommand = 'split' @@ -256,11 +250,12 @@ require('lazy').setup({ 'lewis6991/gitsigns.nvim', opts = { signs = { - add = { text = '+' }, - change = { text = '~' }, - delete = { text = '_' }, + add = { text = '▎' }, + change = { text = '▏' }, + delete = { text = '' }, topdelete = { text = '‾' }, changedelete = { text = '~' }, + untracked = { text = '┆' }, }, }, }, @@ -620,10 +615,10 @@ require('lazy').setup({ underline = { severity = vim.diagnostic.severity.ERROR }, signs = vim.g.have_nerd_font and { text = { - [vim.diagnostic.severity.ERROR] = '󰅚 ', + [vim.diagnostic.severity.ERROR] = ' ', [vim.diagnostic.severity.WARN] = '󰀪 ', [vim.diagnostic.severity.INFO] = '󰋽 ', - [vim.diagnostic.severity.HINT] = '󰌶 ', + [vim.diagnostic.severity.HINT] = ' ', }, } or {}, virtual_text = { @@ -1004,18 +999,16 @@ require('lazy').setup({ -- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table icons = vim.g.have_nerd_font and {} or { cmd = '⌘', - config = '🛠', - event = '📅', - ft = '📂', - init = '⚙', - keys = '🗝', + config = '', + ft = '', + init = '', + keys = '', plugin = '🔌', runtime = '💻', require = '🌙', - source = '📄', - start = '🚀', + source = '', + start = '', task = '📌', - lazy = '💤 ', }, }, })