mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 17:03:36 +02:00
update test color transparant
This commit is contained in:
parent
fe57279597
commit
007f8087fa
3 changed files with 42 additions and 5 deletions
|
@ -19,9 +19,7 @@ return {
|
||||||
{
|
{
|
||||||
"navarasu/onedark.nvim",
|
"navarasu/onedark.nvim",
|
||||||
init = function()
|
init = function()
|
||||||
require("onedark").setup({
|
require("user.onedark")
|
||||||
style = "darker", -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
|
||||||
})
|
|
||||||
require("onedark").load()
|
require("onedark").load()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
local colorscheme = "tokyonight"
|
-- local colorscheme = "tokyonight"
|
||||||
-- local colorscheme = "gruvbox"
|
-- local colorscheme = "gruvbox"
|
||||||
-- local colorscheme = "sonokai"
|
-- local colorscheme = "sonokai"
|
||||||
-- local colorscheme = "nordfox"
|
-- local colorscheme = "nordfox"
|
||||||
-- local colorscheme = "material"
|
-- local colorscheme = "material"
|
||||||
-- local colorscheme = "onedark"
|
local colorscheme = "onedark"
|
||||||
-- local colorscheme = "lunar"
|
-- local colorscheme = "lunar"
|
||||||
-- local colorscheme = "nord"
|
-- local colorscheme = "nord"
|
||||||
|
|
||||||
|
|
39
lua/user/onedark.lua
Normal file
39
lua/user/onedark.lua
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
require("onedark").setup({
|
||||||
|
-- Main options --
|
||||||
|
style = "darker", -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
||||||
|
transparent = true, -- Show/hide background
|
||||||
|
term_colors = true, -- Change terminal color as per the selected theme style
|
||||||
|
ending_tildes = false, -- Show the end-of-buffer tildes. By default they are hidden
|
||||||
|
cmp_itemkind_reverse = false, -- reverse item kind highlights in cmp menu
|
||||||
|
|
||||||
|
-- toggle theme style ---
|
||||||
|
toggle_style_key = nil, -- keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "<leader>ts"
|
||||||
|
toggle_style_list = { "dark", "darker", "cool", "deep", "warm", "warmer", "light" }, -- List of styles to toggle between
|
||||||
|
|
||||||
|
-- Change code style ---
|
||||||
|
-- Options are italic, bold, underline, none
|
||||||
|
-- You can configure multiple style with comma seperated, For e.g., keywords = 'italic,bold'
|
||||||
|
code_style = {
|
||||||
|
comments = "italic",
|
||||||
|
keywords = "none",
|
||||||
|
functions = "none",
|
||||||
|
strings = "none",
|
||||||
|
variables = "none",
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Lualine options --
|
||||||
|
lualine = {
|
||||||
|
transparent = false, -- lualine center bar transparency
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Custom Highlights --
|
||||||
|
colors = {}, -- Override default colors
|
||||||
|
highlights = {}, -- Override highlight groups
|
||||||
|
|
||||||
|
-- Plugins Config --
|
||||||
|
diagnostics = {
|
||||||
|
darker = true, -- darker colors for diagnostic
|
||||||
|
undercurl = true, -- use undercurl instead of underline for diagnostics
|
||||||
|
background = true, -- use background color for virtual text
|
||||||
|
},
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue