Replace onedark with nightfox colourscheme
This commit is contained in:
parent
92acabd111
commit
a55de6db5a
27
config/nvim/lua/config_plugins/config_nightfox.lua
Normal file
27
config/nvim/lua/config_plugins/config_nightfox.lua
Normal 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")
|
|
@ -1,5 +0,0 @@
|
|||
require("onedark").setup {
|
||||
transparent = true,
|
||||
customTelescope = true,
|
||||
}
|
||||
vim.cmd("colorscheme onedark")
|
|
@ -9,10 +9,9 @@ require('packer').startup {
|
|||
function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
use {
|
||||
'monsonjeremy/onedark.nvim',
|
||||
branch = 'treesitter',
|
||||
"EdenEast/nightfox.nvim",
|
||||
config = function()
|
||||
require 'config_plugins.config_onedark'
|
||||
require 'config_plugins.config_nightfox'
|
||||
end
|
||||
}
|
||||
use {
|
||||
|
|
Loading…
Reference in a new issue