Skip to content

Commit

Permalink
lvim - theme dracula
Browse files Browse the repository at this point in the history
  • Loading branch information
shellshock1953 committed Oct 10, 2023
1 parent de58b3c commit 883318a
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions templates/lvim/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,25 @@ lvim.plugins = {
end
},
{ 'projekt0n/caret.nvim' },
{ 'christoomey/vim-tmux-navigator' }
{ 'christoomey/vim-tmux-navigator' },
{ 'dracula/vim' }
}
-- lvim.colorscheme = "shine"
-- lvim.colorscheme = "tokyonight-day"
lvim.colorscheme = "dracula"

local auto_dark_mode = require('auto-dark-mode')

auto_dark_mode.setup({
update_interval = 1000,
set_dark_mode = function()
vim.api.nvim_set_option('background', 'dark')
vim.cmd('colorscheme caret')
end,
set_light_mode = function()
vim.api.nvim_set_option('background', 'light')
vim.cmd('colorscheme caret')
end,
})
auto_dark_mode.init()
-- Change theme based on Mac settings
-- local auto_dark_mode = require('auto-dark-mode')
-- auto_dark_mode.setup({
-- update_interval = 1000,
-- set_dark_mode = function()
-- vim.api.nvim_set_option('background', 'dark')
-- vim.cmd('colorscheme caret')
-- end,
-- set_light_mode = function()
-- vim.api.nvim_set_option('background', 'light')
-- vim.cmd('colorscheme caret')
-- end,
-- })
-- auto_dark_mode.init()

vim.opt.cmdheight = 1 -- more space in the neovim command line for displaying messages
vim.opt.guifont = "monospace:h17" -- the font used in graphical neovim applications
Expand Down

0 comments on commit 883318a

Please sign in to comment.