mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 09:23:02 +01:00
nvim: use tokyonight theme
lualine uses `auto` by default, inheriting the global theme.
This commit is contained in:
parent
b7b95357db
commit
f9291a2aaf
5 changed files with 10 additions and 16 deletions
|
|
@ -18,9 +18,6 @@ require("lazy").setup({
|
|||
-- import your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "onedark" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = {
|
||||
enabled = true,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'onedark'
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
return {
|
||||
"navarasu/onedark.nvim",
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
require('onedark').setup {
|
||||
style = 'warmer'
|
||||
}
|
||||
require('onedark').load()
|
||||
end
|
||||
}
|
||||
8
nvim/lua/plugins/tokyonight.lua
Normal file
8
nvim/lua/plugins/tokyonight.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd([[colorscheme tokyonight-moon]])
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue