Skip to content

Commit a3a735c

Browse files
committed
Back to normal tokyo night
1 parent 9739ea5 commit a3a735c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

init.lua

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ vim.o.smartindent = true
170170
vim.o.autoindent = true
171171

172172
-- terminal theme
173-
vim.o.termguicolors = false
174-
vim.cmd.colorscheme 'ansi'
173+
-- vim.o.termguicolors = false
174+
-- vim.cmd.colorscheme 'ansi'
175175

176176
-- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`),
177177
-- instead raise a dialog asking if you wish to save the current file(s)
@@ -928,7 +928,7 @@ require('lazy').setup({
928928
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
929929
'folke/tokyonight.nvim',
930930
priority = 1000, -- Make sure to load this before all the other start plugins.
931-
enabled = false,
931+
enabled = true,
932932
config = function()
933933
---@diagnostic disable-next-line: missing-fields
934934
require('tokyonight').setup {
@@ -1022,8 +1022,9 @@ require('lazy').setup({
10221022
{
10231023
'akinsho/toggleterm.nvim',
10241024
version = '*',
1025+
enabled = true,
10251026
opts = {
1026-
open_mapping = '<leader>r',
1027+
open_mapping = '<D-r>',
10271028
direction = 'vertical',
10281029
size = function(term)
10291030
if term.direction == 'horizontal' then

0 commit comments

Comments
 (0)