Skip to content

Commit fb62845

Browse files
committed
Change defaults for ansi color theme
1 parent a3a735c commit fb62845

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

colors/ansi.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ hi @string.escape ctermfg=6
137137
hi @string.special.url ctermfg=4 cterm=underline
138138
hi @string.special.symbol ctermfg=13
139139
hi @type.builtin ctermfg=3
140-
hi @property ctermfg=1
140+
hi @property ctermfg=7
141141
hi @function.builtin ctermfg=5
142142
hi @constructor ctermfg=11
143143
hi @keyword.coroutine ctermfg=1

init.lua

Lines changed: 14 additions & 3 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 = true,
931+
enabled = false,
932932
config = function()
933933
---@diagnostic disable-next-line: missing-fields
934934
require('tokyonight').setup {
@@ -944,6 +944,17 @@ require('lazy').setup({
944944
end,
945945
},
946946

947+
{
948+
'stevedylandev/ansi-nvim',
949+
lazy = false,
950+
enabled = false,
951+
priority = 1000,
952+
config = function()
953+
vim.cmd('colorscheme ansi')
954+
vim.opt.termguicolors = false
955+
end,
956+
},
957+
947958
-- Highlight todo, notes, etc in comments
948959
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
949960

0 commit comments

Comments
 (0)