Add pywal theme
This commit is contained in:
@@ -4,19 +4,27 @@ return {
|
|||||||
-- change the command in the config to whatever the name of that colorscheme is.
|
-- change the command in the config to whatever the name of that colorscheme is.
|
||||||
--
|
--
|
||||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||||
|
'AlphaTechnolog/pywal.nvim',
|
||||||
|
dependencies = {
|
||||||
'folke/tokyonight.nvim',
|
'folke/tokyonight.nvim',
|
||||||
|
},
|
||||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||||
config = function()
|
config = function()
|
||||||
---@diagnostic disable-next-line: missing-fields
|
|
||||||
require('tokyonight').setup {
|
|
||||||
styles = {
|
|
||||||
comments = { italic = false }, -- Disable italics in comments
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Load the colorscheme here.
|
-- Check if wal directory exists otherwise use tokyo
|
||||||
-- Like many other themes, this one has different styles, and you could load
|
local handle = io.popen('ls -d $HOME/.cache/wal 2>/dev/null')
|
||||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
local result = handle:read('*a')
|
||||||
|
handle:close()
|
||||||
|
|
||||||
|
if result == "" then
|
||||||
|
---@diagnostic disable-next-line: missing-fields
|
||||||
|
require('tokyonight').setup();
|
||||||
|
|
||||||
vim.cmd.colorscheme 'tokyonight-night'
|
vim.cmd.colorscheme 'tokyonight-night'
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
require('pywal').setup();
|
||||||
|
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|||||||
3
lua/plugins/pywal.lua
Normal file
3
lua/plugins/pywal.lua
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
'AlphaTechnolog/pywal.nvim',
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user