Skip to content

Commit

Permalink
Removed twilight.nvim, added folke/zen-mode.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
lvim-tech committed Jan 9, 2022
1 parent 786d405 commit 2914bc9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lua/modules/global/configs/ui/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ function config.lualine()
}
local vim_mode = vim.fn.mode()
vim.api.nvim_command("hi! LualineMode guifg=" .. mode_color[vim.fn.mode()] .. " guibg=" .. colors.bg)
return "" .. alias[vim_mode]
return "" .. alias[vim_mode]
end,
color = "LualineMode",
padding = {right = 1}
Expand Down Expand Up @@ -764,8 +764,8 @@ function config.toggleterm()
vim.cmd("command! TTThree lua _G.toggleterm_three_toggle()")
end

function config.twilight()
require("twilight").setup {}
function config.zen_mode()
require("zen-mode").setup {}
end

function config.indent_blankline()
Expand Down
6 changes: 3 additions & 3 deletions lua/modules/global/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ modules["akinsho/toggleterm.nvim"] = {
config = ui_config.toggleterm
}

modules["folke/twilight.nvim"] = {
cmd = "Twilight",
config = ui_config.twilight
modules["folke/zen-mode.nvim"] = {
cmd = "ZenMode",
config = ui_config.zen_mode
}

modules["lukas-reineke/indent-blankline.nvim"] = {
Expand Down

0 comments on commit 2914bc9

Please sign in to comment.