Merge branch 'main' of labs.scarif.space:chris/nvim

This commit is contained in:
Chris
2026-03-31 14:15:49 +01:00
4 changed files with 181 additions and 83 deletions

View File

@@ -4,19 +4,24 @@ return {
-- 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`.
'folke/tokyonight.nvim',
'AlphaTechnolog/pywal.nvim',
dependencies = {
'folke/tokyonight.nvim',
},
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup {
styles = {
comments = { italic = false }, -- Disable italics in comments
},
}
require('tokyonight').setup()
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
-- Check if wal directory exists otherwise use tokyo
local handle = io.popen 'ls -d $HOME/.cache/wal 2>/dev/null'
local result = handle:read '*a'
handle:close()
if result ~= '' then
require('pywal').setup()
end
end,
}

3
lua/plugins/pywal.lua Normal file
View File

@@ -0,0 +1,3 @@
return {
'AlphaTechnolog/pywal.nvim',
}

View File

@@ -3,7 +3,6 @@ return {
'nvim-treesitter/nvim-treesitter',
branch = 'main',
build = ':TSUpdate',
lazy = false,
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
config = function()
local langs = {