diff options
| author | Blista Kanjo | 2023-06-24 06:52:02 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2023-06-24 06:52:02 -0400 |
| commit | d34c0654b6c06b93855bcbf334825ed0704dc215 (patch) | |
| tree | 6cd45a61eccd67a80d3c7420bf6ee97c20924276 | |
| parent | f7045a63e3ae07dd02a3d90e95a57623939225a2 (diff) | |
refactor: readable and more contrast-y line numbers
| -rw-r--r-- | .config/nvim/lua/look.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/nvim/lua/look.lua b/.config/nvim/lua/look.lua index 8f3155a..609ac18 100644 --- a/.config/nvim/lua/look.lua +++ b/.config/nvim/lua/look.lua @@ -34,4 +34,7 @@ vim.cmd("filetype plugin on") vim.cmd("syntax on") vim.cmd("highlight Cursorline cterm=bold ctermbg=black") vim.cmd("filetype indent on") - +-- set the text color of the line numbers +vim.cmd('highlight LineNr guifg=darkgray ctermfg=darkgray') +-- set the text color for the current line number +vim.cmd('highlight CursorLineNr guifg=cyan ctermfg=cyan') |
