dotfiles

[void/arch] linux dotfiles
git clone git://git.mdnr.space/dotfiles
Log | Files | Refs

commit 364a85762c9b76bb070f148a0a7f55a19c3bfed0
parent d8a8571a8df3407d07e91e12ef8370cf1ac71c3b
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date:   Mon, 11 Sep 2023 11:18:55 +0330

nvim: set colorscheme to monochrome

Diffstat:
Mnvim/.config/nvim/after/plugin/colors.lua | 86+++++++++++++++++++++++++++++++++++++++++++------------------------------------
1 file changed, 47 insertions(+), 39 deletions(-)

diff --git a/nvim/.config/nvim/after/plugin/colors.lua b/nvim/.config/nvim/after/plugin/colors.lua @@ -1,45 +1,45 @@ -vim.g.mehdi_colorscheme = "gruvbox-material" +vim.g.mehdi_colorscheme = "monochrome" -require('rose-pine').setup({ +--[[ require('rose-pine').setup({ disable_background = true -}) +}) ]] -require('tokyonight').setup({ - style = "night", - transparent = true, - terminal_colors = true, - dim_inactive = true, - on_highlights = function(hl, c) - -- local prompt = "2d3149" - hl.TelescopeNormal = { - bg = c.bg_dark, - fg = c.fg_dark, - } - hl.TelescopeBorder = { - bg = c.bg_dark, - fg = c.bg_dark, - } - hl.TelescopePromptNormal = { - bg = bg_none, - } - -- hl.TelescopePromptBorder = { - -- bg = prompt, - -- fg = prompt, - -- } - -- hl.TelescopePromptTitle = { - -- bg = prompt, - -- fg = prompt, - -- } - hl.TelescopePreviewTitle = { - bg = c.bg_dark, - fg = c.bg_dark, - } - hl.TelescopeResultsTitle = { - bg = c.bg_dark, - fg = c.bg_dark, - } - end, -}) +-- require('tokyonight').setup({ +-- style = "night", +-- transparent = true, +-- terminal_colors = true, +-- dim_inactive = true, +-- on_highlights = function(hl, c) +-- -- local prompt = "2d3149" +-- hl.TelescopeNormal = { +-- bg = c.bg_dark, +-- fg = c.fg_dark, +-- } +-- hl.TelescopeBorder = { +-- bg = c.bg_dark, +-- fg = c.bg_dark, +-- } +-- hl.TelescopePromptNormal = { +-- bg = bg_none, +-- } +-- -- hl.TelescopePromptBorder = { +-- -- bg = prompt, +-- -- fg = prompt, +-- -- } +-- -- hl.TelescopePromptTitle = { +-- -- bg = prompt, +-- -- fg = prompt, +-- -- } +-- hl.TelescopePreviewTitle = { +-- bg = c.bg_dark, +-- fg = c.bg_dark, +-- } +-- hl.TelescopeResultsTitle = { +-- bg = c.bg_dark, +-- fg = c.bg_dark, +-- } +-- end, +-- }) function ColorMyPencils() vim.g.gruvbox_contrast_dark = 'hard' vim.g.tokyonight_transparent_sidebar = true @@ -85,6 +85,14 @@ function ColorMyPencils() bg = "none" }) + hl("Pmenu", { + bg = "none" + }) + + hl("FloatBorder", { + bg = "#a0a0a0", + fg = "#ffffff" + }) end ColorMyPencils()