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
|
--- Completion
|
||||||
vim.cmd("set shortmess+=c")
|
vim.cmd("set shortmess+=c")
|
||||||
vim.o.completeopt = "menuone,noinsert,noselect"
|
vim.opt.completeopt = { "menuone", "noselect" }
|
||||||
|
|
||||||
--- Appearance
|
--- Appearance
|
||||||
vim.o.background = "light"
|
|
||||||
vim.o.scrolloff = 7
|
vim.o.scrolloff = 7
|
||||||
vim.o.showmode = false
|
vim.o.showmode = false
|
||||||
vim.o.sidescrolloff = 5
|
vim.o.sidescrolloff = 5
|
||||||
|
|
|
@ -14,7 +14,7 @@ function M.config()
|
||||||
lualine.setup({
|
lualine.setup({
|
||||||
options = {
|
options = {
|
||||||
globalstatus = true,
|
globalstatus = true,
|
||||||
theme = "onelight",
|
theme = "onedark",
|
||||||
component_separators = { left = "╲", right = "╱" },
|
component_separators = { left = "╲", right = "╱" },
|
||||||
section_separators = { left = "", right = "" },
|
section_separators = { left = "", right = "" },
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
local M = {
|
local M = {
|
||||||
"mcchrish/zenbones.nvim",
|
"mcchrish/zenbones.nvim",
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
-- event = "VeryLazy",
|
-- event = "VeryLazy",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "rktjmp/lush.nvim" },
|
{ "rktjmp/lush.nvim" },
|
||||||
|
@ -7,9 +9,9 @@ local M = {
|
||||||
}
|
}
|
||||||
|
|
||||||
function M.config()
|
function M.config()
|
||||||
vim.g.zenbones = {
|
vim.g.kanagawabones = {
|
||||||
style = "light",
|
-- style = "light",
|
||||||
lightness = "bright",
|
-- lightness = "bright",
|
||||||
colorize_diagnostic_underline_text = true,
|
colorize_diagnostic_underline_text = true,
|
||||||
transparent_background = true,
|
transparent_background = true,
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,7 @@ threads = 0
|
||||||
date = relative
|
date = relative
|
||||||
|
|
||||||
[delta]
|
[delta]
|
||||||
syntax-theme = GitHub
|
# syntax-theme = GitHub
|
||||||
hunk-header-style = line-number syntax
|
hunk-header-style = line-number syntax
|
||||||
|
|
||||||
[hub]
|
[hub]
|
||||||
|
|
Loading…
Reference in a new issue