Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
switched to tokyodark
Browse files Browse the repository at this point in the history
  • Loading branch information
nexxeln committed Aug 30, 2022
1 parent 8af9388 commit 761a241
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion after/plugin/lualine.rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if (not status) then return end

lualine.setup {
options = {
theme = "everblush",
theme = "tokyodark",
icons_enabled = true,
section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' },
Expand Down
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ require("maps")
require("plugins")
require("options")

vim.cmd("colorscheme everblush")
vim.cmd("colorscheme tokyodark")
12 changes: 8 additions & 4 deletions lua/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ vim.o.expandtab = true

vim.bo.expandtab = true

vim.g.oxocarbon_lua_disable_italic = true
vim.g.oxocarbon_lua_alternative_telescope = true
vim.g.oxocarbon_lua_transparent = true
vim.g.oxocarbon_lua_lualine_theme = 2
vim.g.tokyodark_transparent_background = true
vim.g.tokyodark_enable_italic = false
-- vim.g.oxocarbon_lua_disable_italic = true
-- vim.g.oxocarbon_lua_alternative_telescope = true
-- vim.g.oxocarbon_lua_transparent = true
-- vim.g.oxocarbon_lua_lualine_theme = 2


30 changes: 12 additions & 18 deletions lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,21 @@ packer.startup({ function(use)

-- plugins go here
-- use { 'shaunsingh/oxocarbon.nvim', run = './install.sh' }
use {
'B4mbus/oxocarbon-lua.nvim',
branch = 'lualine'
}
use {
'olivercederborg/poimandres.nvim',
config = function()
require('poimandres').setup {}
end
}
use 'astridlyre/moonlight.nvim'
use { 'Everblush/everblush.nvim', as = 'everblush' }

-- use {
-- 'B4mbus/oxocarbon-lua.nvim',
-- branch = 'lualine'
-- }
use 'tiagovla/tokyodark.nvim'


use {'glepnir/dashboard-nvim'} -- dashboard

use {
'kyazdani42/nvim-tree.lua',
requires = {
'kyazdani42/nvim-web-devicons', -- optional, for file icons
},
tag = 'nightly' -- optional, updated every week. (see issue #1193)
'kyazdani42/nvim-tree.lua',
requires = {
'kyazdani42/nvim-web-devicons', -- optional, for file icons
},
tag = 'nightly' -- optional, updated every week. (see issue #1193)
}
use 'nvim-telescope/telescope.nvim'
use 'nvim-telescope/telescope-file-browser.nvim'
Expand Down

0 comments on commit 761a241

Please sign in to comment.