user/neovim: add nvim-highlight-colors

This commit is contained in:
Cilly Leang 2025-08-17 23:09:58 +10:00
parent 633d781a25
commit d9df212560
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 5 additions and 0 deletions

View file

@ -47,6 +47,7 @@ in {
nvim-cmp
nvim-dap
nvim-highlight-colors
nvim-lspconfig
cmp-nvim-lsp
cmp_luasnip

View file

@ -18,6 +18,7 @@ vim.opt.number = true
vim.opt.cursorline = true
vim.opt.signcolumn = "yes:3"
vim.opt.title = true
vim.opt.termguicolors = true
vim.opt.updatetime = 0
vim.opt.clipboard:prepend('unnamedplus')
@ -94,6 +95,9 @@ end
vim.cmd('au FileType javascript setlocal indentexpr=v:lua.javascript_indent()')
-- nvim-highlight-colors
require('nvim-highlight-colors').setup {}
-- LSP
local nvim_lsp = require('lspconfig')