Remove references to tokyonight theme
This commit is contained in:
parent
6fd6aeb5d1
commit
13dd5b40cf
3 changed files with 0 additions and 19 deletions
|
@ -1,12 +1,5 @@
|
|||
local ns = require('nifoc.utils.statusline')
|
||||
|
||||
--local theme_config = require('tokyonight.config')
|
||||
--local theme_colors = require('tokyonight.colors').setup(theme_config)
|
||||
|
||||
--vim.cmd('highlight GitSignsStatuslineAdd guifg=' .. theme_colors.git.add .. ' guibg=#3b4261')
|
||||
--vim.cmd('highlight GitSignsStatuslineChange guifg=' .. theme_colors.git.change .. ' guibg=#3b4261')
|
||||
--vim.cmd('highlight GitSignsStatuslineDelete guifg=' .. theme_colors.red .. ' guibg=#3b4261')
|
||||
|
||||
require('gitsigns').setup {
|
||||
signs = {
|
||||
add = {hl = 'GitSignsAdd', text = '│', numhl='GitSignsAddNr', linehl='GitSignsAddLn'},
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
local ns = require('nifoc.utils.statusline')
|
||||
|
||||
--local theme_config = require('tokyonight.config')
|
||||
--local theme_colors = require('tokyonight.colors').setup(theme_config)
|
||||
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
theme = 'dracula-nvim',
|
||||
|
@ -20,9 +17,6 @@ require('lualine').setup {
|
|||
{
|
||||
'diagnostics',
|
||||
sources = {'nvim_lsp'},
|
||||
--color_error = {fg =theme_colors.error},
|
||||
--color_warn = {fg = theme_colors.warning},
|
||||
--color_info = {fg = theme_colors.info},
|
||||
symbols = {error = ' ', warn = ' ', info = ' '}
|
||||
},
|
||||
},
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
-- tokyonight
|
||||
|
||||
vim.g.tokyonight_style = 'night'
|
||||
vim.g.tokyonight_hide_inactive_statusline = true
|
||||
vim.g.tokyonight_sidebars = { "qf", "packer" }
|
||||
|
||||
-- dracula
|
||||
|
||||
vim.g.dracula_show_end_of_buffer = false
|
||||
|
|
Loading…
Reference in a new issue