mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-01-08 06:24:00 -05:00
133dd68322
- nvim-ts-rainbow: move config into 'nvim-treesitter.configs' block - bufferline.nvim: update lsp diagnostic display, highlight - gitsigns.nvim: add highlight for line blame info - nvim-autopairs: update new config - highlight: no more lazy loading (only 1-2ms faster, and caused some glitched highlights at startup due to treesitter group) - chore: theme.util -> util
11 lines
175 B
Lua
11 lines
175 B
Lua
local M = {}
|
|
|
|
local c = require('themes.onedark.colors')
|
|
local hi = require('util').highlight
|
|
|
|
function M.highlight_editor()
|
|
hi('ModeMsg', c.fg, '', '', '')
|
|
end
|
|
|
|
return M
|