Skip to content

Commit 17c3f80

Browse files
committed
Initial customisations to my own fork
1 parent 305ec77 commit 17c3f80

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

init.lua

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -892,20 +892,20 @@ require('lazy').setup({
892892
-- change the command in the config to whatever the name of that colorscheme is.
893893
--
894894
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
895-
'folke/tokyonight.nvim',
895+
'EdenEast/nightfox.nvim',
896896
priority = 1000, -- Make sure to load this before all the other start plugins.
897897
config = function()
898898
---@diagnostic disable-next-line: missing-fields
899-
require('tokyonight').setup {
900-
styles = {
901-
comments = { italic = false }, -- Disable italics in comments
902-
},
899+
require('nightfox').setup {
900+
--styles = {
901+
-- comments = { italic = false }, -- Disable italics in comments
902+
--},
903903
}
904904

905905
-- Load the colorscheme here.
906906
-- Like many other themes, this one has different styles, and you could load
907-
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
908-
vim.cmd.colorscheme 'tokyonight-night'
907+
-- any other.
908+
vim.cmd.colorscheme 'nightfox'
909909
end,
910910
},
911911

@@ -992,7 +992,6 @@ require('lazy').setup({
992992
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
993993
--
994994
-- require 'kickstart.plugins.debug',
995-
-- require 'kickstart.plugins.indent_line',
996995
-- require 'kickstart.plugins.lint',
997996
-- require 'kickstart.plugins.autopairs',
998997
-- require 'kickstart.plugins.neo-tree',

0 commit comments

Comments
 (0)