Update neovim config.
This commit is contained in:
parent
b866f3a295
commit
a9dbc12da9
10 changed files with 656 additions and 10 deletions
44
nvim/lua/dwl/plugin-conf/tokyonight.lua
Normal file
44
nvim/lua/dwl/plugin-conf/tokyonight.lua
Normal file
|
@ -0,0 +1,44 @@
|
|||
local tn = require("tokyonight")
|
||||
|
||||
tn.setup({
|
||||
style = "night",
|
||||
-- transparent = false,
|
||||
terminal_colors = true,
|
||||
styles = {
|
||||
comments = { italic = true },
|
||||
-- strings = { italic = true },
|
||||
},
|
||||
-- on_highlights = function(hl, c)
|
||||
-- local prompt = "#2d3149"
|
||||
-- -- borderless telescope
|
||||
-- hl.TelescopeNormal = {
|
||||
-- bg = c.bg_dark,
|
||||
-- fg = c.fg_dark,
|
||||
-- }
|
||||
-- hl.TelescopeBorder = {
|
||||
-- bg = c.bg_dark,
|
||||
-- fg = c.bg_dark,
|
||||
-- }
|
||||
-- hl.TelescopePromptNormal = {
|
||||
-- bg = prompt,
|
||||
-- }
|
||||
-- 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,
|
||||
-- sidebars = { "qf", "help", "aerial", "packer" },
|
||||
})
|
||||
vim.cmd("colorscheme tokyonight-night")
|
Loading…
Add table
Add a link
Reference in a new issue