Skip to content

Commit

Permalink
change the theme for last time
Browse files Browse the repository at this point in the history
  • Loading branch information
zacheryph committed Jan 18, 2022
1 parent b0a25fe commit 70c804c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions config/neovim/init.lua
Expand Up @@ -3,16 +3,21 @@ require('settings')
require('completion')
require('mappings')

vim.cmd[[let g:everforest_background = 'hard']]
vim.cmd[[colorscheme everforest]]
-- vim.cmd[[colorscheme nightfox]]
local nightfox = require('nightfox')
nightfox.setup({
fox = 'nordfox',
styles = { comments = "italic" },
})
nightfox.load()

-- comment needs to be initialized
require('nvim_comment').setup()

-- lualine
require('lualine').setup {
options = {
theme = 'everforest',
theme = 'nightfox',
component_separators = { left = '', right = ''},
section_separators = { left = '', right = ''},
}
Expand Down
5 changes: 2 additions & 3 deletions config/neovim/lua/plugins.lua
Expand Up @@ -62,9 +62,8 @@ return require('packer').startup(function(use)
-- themes
use 'KeitaNakamura/neodark.vim'
use 'arcticicestudio/nord-vim'
use 'ellisonleao/gruvbox.nvim'
use 'sainnhe/everforest'
use 'sainnhe/edge'
use 'EdenEast/nightfox.nvim'
use 'folke/tokyonight.nvim'

-- bootstrap packer
if packer_bootstrap then
Expand Down
1 change: 1 addition & 0 deletions config/neovim/lua/settings.lua
Expand Up @@ -24,6 +24,7 @@ o.relativenumber = true
o.swapfile = false
o.backup = false

o.cursorline = true
o.hlsearch = true
o.smartcase = true
o.smarttab = true
Expand Down

0 comments on commit 70c804c

Please sign in to comment.