mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-25 02:08:48 +02:00
Updated 7. Example Custom Plugins (markdown)
parent
597fcac357
commit
b9e669a6bd
1 changed files with 4 additions and 0 deletions
|
@ -1676,13 +1676,17 @@ return {
|
||||||
require("onedarkpro").setup({
|
require("onedarkpro").setup({
|
||||||
colors = {
|
colors = {
|
||||||
-- red = "#FF0000",
|
-- red = "#FF0000",
|
||||||
|
bg_statusline = "#282c34",
|
||||||
},
|
},
|
||||||
options = {
|
options = {
|
||||||
cursorline = true,
|
cursorline = true,
|
||||||
transparency = false,
|
transparency = false,
|
||||||
|
terminal_colors = true,
|
||||||
},
|
},
|
||||||
highlights = {
|
highlights = {
|
||||||
-- overide cursor line fill colors
|
-- overide cursor line fill colors
|
||||||
|
LineNr = { fg = "${fg}" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
||||||
|
CursorLineNr = { fg = "${fg}" }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
|
||||||
CursorLine = { bg = "#333842" },
|
CursorLine = { bg = "#333842" },
|
||||||
Cursor = { fg = "${bg}", bg = "${fg}" }, -- character under the cursor
|
Cursor = { fg = "${bg}", bg = "${fg}" }, -- character under the cursor
|
||||||
lCursor = { fg = "${bg}", bg = "${fg}" }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
lCursor = { fg = "${bg}", bg = "${fg}" }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue