1
0
Fork 0

FEAT: Add Colour highlighting

main
Nigel Barink 2024-04-09 18:20:29 +02:00
parent b7785d460d
commit 0c2a2236a5
Signed by: Nigel
GPG Key ID: C54278C495538619
2 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,7 @@
"nvim-dap": { "branch": "master", "commit": "405df1dcc2e395ab5173a9c3d00e03942c023074" },
"nvim-dap-ui": { "branch": "master", "commit": "edfa93f60b189e5952c016eee262d0685d838450" },
"nvim-dap-virtual-text": { "branch": "master", "commit": "baa5b0dc6663284cce32e0d00ac1f2511b13496f" },
"nvim-highlight-colors": { "branch": "main", "commit": "d711574ebbafec60ca063320c339705287abc00f" },
"nvim-jdtls": { "branch": "master", "commit": "8eb5f0dbe6e126b392ddcaf45893358619893e45" },
"nvim-lspconfig": { "branch": "master", "commit": "24662f92c18edd397ef12d635b11dbdedef2d094" },
"nvim-nio": { "branch": "master", "commit": "33c62b3eadd8154169e42144de16ba4db6784bec" },

View File

@ -0,0 +1,9 @@
return {
{
'brenoprata10/nvim-highlight-colors',
config = function ()
vim.opt.termguicolors = true
require("nvim-highlight-colors").setup({})
end
}
}