Skip to content

Commit

Permalink
Use NeoSolarized theme
Browse files Browse the repository at this point in the history
  • Loading branch information
flovilmart committed Oct 15, 2024
1 parent 06cd8ef commit 3aa8fcd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions lua/flovilmart/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ vim.call('plug#begin', '~/.config/nvim/plugged')
-- Style and coloring
Plug ('altercation/vim-colors-solarized')
Plug ('sheerun/vim-wombat-scheme')
Plug ('Tsuzat/neosolarized.nvim')
Plug ('vim-airline/vim-airline')
Plug ('vim-airline/vim-airline-themes')

Expand Down
18 changes: 13 additions & 5 deletions plugin/after/styling.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ vim.g.user_zen_mode = 'a'
vim.cmd [[
filetype plugin on
filetype indent on
syntax enable
colorscheme solarized
syntax on
colorscheme NeoSolarized
set guioptions-=r
set guioptions-=R
set guioptions-=l
Expand All @@ -56,7 +56,15 @@ vim.cmd [[
map <leader>e :e! ~/.config/nvim<cr>
]]

vim.g.airline_theme = 'solarized'
vim.g.airline_solarized_bg='dark'
vim.g["airline#extensions#ale#enabled"] = 0
-- vim.g.airline_theme = 'solrarized'
-- vim.g.airline_solarized_bg='dark'
-- vim.g["airline#extensions#ale#enabled"] = 0
vim.g["airline#extensions#nvimlsp#enabled"] = 1


local NeoSolarized = require("NeoSolarized")

NeoSolarized.setup {
style = "dark", -- "dark" or "light"
transparent = true, -- true/false; Enable this to disable setting the background color
}

0 comments on commit 3aa8fcd

Please sign in to comment.