nvim: dark modes
This commit is contained in:
parent
f6fe8df934
commit
de0266996c
4 changed files with 8 additions and 7 deletions
|
@ -46,10 +46,9 @@ end
|
|||
|
||||
--- Completion
|
||||
vim.cmd("set shortmess+=c")
|
||||
vim.o.completeopt = "menuone,noinsert,noselect"
|
||||
vim.opt.completeopt = { "menuone", "noselect" }
|
||||
|
||||
--- Appearance
|
||||
vim.o.background = "light"
|
||||
vim.o.scrolloff = 7
|
||||
vim.o.showmode = false
|
||||
vim.o.sidescrolloff = 5
|
||||
|
|
|
@ -14,7 +14,7 @@ function M.config()
|
|||
lualine.setup({
|
||||
options = {
|
||||
globalstatus = true,
|
||||
theme = "onelight",
|
||||
theme = "onedark",
|
||||
component_separators = { left = "╲", right = "╱" },
|
||||
section_separators = { left = "", right = "" },
|
||||
},
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
local M = {
|
||||
"mcchrish/zenbones.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
-- event = "VeryLazy",
|
||||
dependencies = {
|
||||
{ "rktjmp/lush.nvim" },
|
||||
|
@ -7,9 +9,9 @@ local M = {
|
|||
}
|
||||
|
||||
function M.config()
|
||||
vim.g.zenbones = {
|
||||
style = "light",
|
||||
lightness = "bright",
|
||||
vim.g.kanagawabones = {
|
||||
-- style = "light",
|
||||
-- lightness = "bright",
|
||||
colorize_diagnostic_underline_text = true,
|
||||
transparent_background = true,
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ threads = 0
|
|||
date = relative
|
||||
|
||||
[delta]
|
||||
syntax-theme = GitHub
|
||||
# syntax-theme = GitHub
|
||||
hunk-header-style = line-number syntax
|
||||
|
||||
[hub]
|
||||
|
|
Loading…
Reference in a new issue