Skip to content

Commit 1752e3b

Browse files
committed
nvim: highlight colours, better indent leadmultispace
1 parent b59c84f commit 1752e3b

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

dot_config/nvim/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ opt.listchars = {
7777
extends = '»',
7878
precedes = '«',
7979
nbsp = '',
80-
leadmultispace = ' ',
80+
leadmultispace = ' ',
8181
multispace = '·',
8282
trail = '·',
8383
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
return {
2+
render = 'background',
3+
-- virtual_symbol = '■',
4+
-- virtual_symbol_position = 'inline',
5+
enable_hex = true,
6+
enable_short_hex = true,
7+
enable_rgb = true,
8+
enable_hsl = true,
9+
enable_var_usage = true,
10+
enable_named_colors = true,
11+
enable_tailwind = false,
12+
}

dot_config/nvim/lua/plugins.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ return {
4141
-- config = require('cfg.telescope'),
4242
config = true,
4343
},
44+
{
45+
'brenoprata10/nvim-highlight-colors',
46+
config = require('cfg.highlightcolors'),
47+
},
4448
-- filetypes
4549
{
4650
'xvzc/chezmoi.nvim',

0 commit comments

Comments
 (0)