Skip to content

Commit 372f918

Browse files
authored
Update init.lua
1 parent 34e7d29 commit 372f918

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

init.lua

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,6 @@ vim.opt.timeoutlen = 300
141141
vim.opt.splitright = true
142142
vim.opt.splitbelow = true
143143

144-
-- Sets how neovim will display certain whitespace characters in the editor.
145-
-- See `:help 'list'`
146-
-- and `:help 'listchars'`
147-
vim.opt.list = true
148-
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
149-
150144
-- Preview substitutions live, as you type!
151145
vim.opt.inccommand = 'split'
152146

@@ -256,11 +250,12 @@ require('lazy').setup({
256250
'lewis6991/gitsigns.nvim',
257251
opts = {
258252
signs = {
259-
add = { text = '+' },
260-
change = { text = '~' },
261-
delete = { text = '_' },
253+
add = { text = '' },
254+
change = { text = '' },
255+
delete = { text = '' },
262256
topdelete = { text = '' },
263257
changedelete = { text = '~' },
258+
untracked = { text = '' },
264259
},
265260
},
266261
},
@@ -620,10 +615,10 @@ require('lazy').setup({
620615
underline = { severity = vim.diagnostic.severity.ERROR },
621616
signs = vim.g.have_nerd_font and {
622617
text = {
623-
[vim.diagnostic.severity.ERROR] = '󰅚 ',
618+
[vim.diagnostic.severity.ERROR] = ' ',
624619
[vim.diagnostic.severity.WARN] = '󰀪 ',
625620
[vim.diagnostic.severity.INFO] = '󰋽 ',
626-
[vim.diagnostic.severity.HINT] = '󰌶 ',
621+
[vim.diagnostic.severity.HINT] = ' ',
627622
},
628623
} or {},
629624
virtual_text = {
@@ -1004,18 +999,16 @@ require('lazy').setup({
1004999
-- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table
10051000
icons = vim.g.have_nerd_font and {} or {
10061001
cmd = '',
1007-
config = '🛠',
1008-
event = '📅',
1009-
ft = '📂',
1010-
init = '',
1011-
keys = '🗝',
1002+
config = '',
1003+
ft = '',
1004+
init = '',
1005+
keys = '',
10121006
plugin = '🔌',
10131007
runtime = '💻',
10141008
require = '🌙',
1015-
source = '📄',
1016-
start = '🚀',
1009+
source = '',
1010+
start = '',
10171011
task = '📌',
1018-
lazy = '💤 ',
10191012
},
10201013
},
10211014
})

0 commit comments

Comments
 (0)