Replace onedark with nightfox colourscheme

This commit is contained in:
Evie Litherland-Smith 2023-01-12 11:49:12 +00:00
parent 92acabd111
commit a55de6db5a
3 changed files with 29 additions and 8 deletions

View file

@ -0,0 +1,27 @@
vim.cmd("set termguicolors")
require('nightfox').setup {
transparent = true,
modules = {
aerial = true,
cmp = true,
fidget = true,
gitsigns = true,
gitgutter = true,
hop = true,
lsp_trouble = true,
notify = true,
nvimtree = true,
telescope = true,
treesitter = true,
diagnostic = {
enable = true,
backgroud = true,
},
native_lsp = {
enable = true,
backgroud = true,
},
},
}
require('nightfox').compile()
vim.cmd("colorscheme duskfox")

View file

@ -1,5 +0,0 @@
require("onedark").setup {
transparent = true,
customTelescope = true,
}
vim.cmd("colorscheme onedark")

View file

@ -9,10 +9,9 @@ require('packer').startup {
function(use) function(use)
use 'wbthomason/packer.nvim' use 'wbthomason/packer.nvim'
use { use {
'monsonjeremy/onedark.nvim', "EdenEast/nightfox.nvim",
branch = 'treesitter',
config = function() config = function()
require 'config_plugins.config_onedark' require 'config_plugins.config_nightfox'
end end
} }
use { use {