astro-nvim-v3 - hl number color

This commit is contained in:
huyjaky
2024-08-19 16:33:13 +07:00
parent f10ca96639
commit 1f7ec497c6
5 changed files with 11 additions and 3 deletions

View File

@@ -25,7 +25,7 @@
"flash.nvim": { "branch": "main", "commit": "34c7be146a91fec3555c33fe89c7d643f6ef5cf1" }, "flash.nvim": { "branch": "main", "commit": "34c7be146a91fec3555c33fe89c7d643f6ef5cf1" },
"friendly-snippets": { "branch": "main", "commit": "00ebcaa159e817150bd83bfe2d51fa3b3377d5c4" }, "friendly-snippets": { "branch": "main", "commit": "00ebcaa159e817150bd83bfe2d51fa3b3377d5c4" },
"gitsigns.nvim": { "branch": "main", "commit": "0b04035bb7b3c83e999b9676e2fb46fd0aa9f910" }, "gitsigns.nvim": { "branch": "main", "commit": "0b04035bb7b3c83e999b9676e2fb46fd0aa9f910" },
"grug-far.nvim": { "branch": "main", "commit": "5aae8b67be44682d469e71ec9e285793111f10a9" }, "grug-far.nvim": { "branch": "main", "commit": "85cadf849bdb22540c36da2034d21de0b37c0952" },
"guess-indent.nvim": { "branch": "main", "commit": "6cd61f7a600bb756e558627cd2e740302c58e32d" }, "guess-indent.nvim": { "branch": "main", "commit": "6cd61f7a600bb756e558627cd2e740302c58e32d" },
"heirline.nvim": { "branch": "master", "commit": "0d797435e54645a5f98bad7ad6046aac1ef95c1e" }, "heirline.nvim": { "branch": "master", "commit": "0d797435e54645a5f98bad7ad6046aac1ef95c1e" },
"indent-blankline.nvim": { "branch": "master", "commit": "3fe94b8034dd5241cb882bb73847303b58857ecf" }, "indent-blankline.nvim": { "branch": "master", "commit": "3fe94b8034dd5241cb882bb73847303b58857ecf" },

View File

@@ -7,6 +7,11 @@ vim.api.nvim_create_augroup("clear_last_search", { clear = true })
-- NOTE: CursorLineNr setting -- NOTE: CursorLineNr setting
vim.api.nvim_set_hl(0, "CursorLineNr", { fg = "#FFD700", bg = "none", bold = true }) vim.api.nvim_set_hl(0, "CursorLineNr", { fg = "#FFD700", bg = "none", bold = true })
-- NOTE: Set colors for hightlights for similar words
-- vim.api.nvim_set_hl(0, "LspReferenceRead", { fg = "#FF0000" })
-- vim.api.nvim_set_hl(0, "LspReferenceWrite", { fg = "#FF0000" })
-- vim.api.nvim_set_hl(0, "LspReferenceText", { fg = "#FF0000" })
vim.api.nvim_create_autocmd("BufEnter", { vim.api.nvim_create_autocmd("BufEnter", {
desc = "Disable auto insert comment newline", desc = "Disable auto insert comment newline",
group = "disable_comment_newline", group = "disable_comment_newline",

View File

@@ -165,13 +165,13 @@ local banners = {
[[ ]], [[ ]],
[[ ]], [[ ]],
[[ ]], [[ ]],
[[ ]],
[[ __ ]], [[ __ ]],
[[ ___ ___ ___ __ __ /\_\ ___ ___ ]], [[ ___ ___ ___ __ __ /\_\ ___ ___ ]],
[[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]], [[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]],
[[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]], [[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]],
[[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]], [[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]],
[[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]], [[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]],
[[ Welcome       ]],
}, },
} }

View File

@@ -49,7 +49,7 @@ return {
DiagnosticInfo = "󰋼", DiagnosticInfo = "󰋼",
DiagnosticWarn = "", DiagnosticWarn = "",
-- Misc -- Misc
Mode = "󰊠   ", Mode = "     ",
FileEncoding = "", FileEncoding = "",
ScrollText = "", ScrollText = "",
TabWidth = "", TabWidth = "",

View File

@@ -16,6 +16,9 @@ return {
{ "lukas-reineke/indent-blankline.nvim", enabled = false }, { "lukas-reineke/indent-blankline.nvim", enabled = false },
{ "chipsenkbeil/distant.nvim", enabled = false }, { "chipsenkbeil/distant.nvim", enabled = false },
{ "gen740/SmoothCursor.nvim", enabled = false }, { "gen740/SmoothCursor.nvim", enabled = false },
{ "stevearc/resession.nvim", enabled = false },
{ "AstroNvim/astrotheme", enabled = false },
{ "echasnovski/mini.move", enabled = false },
-- { "hrsh7th/nvim-cmp", enabled = false }, -- { "hrsh7th/nvim-cmp", enabled = false },
} }