This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/plugin/colorscheme.lua
David JULIEN 19af34b75d
[nvim] feat: switch to lazy.nvim
!!! BREAKING: packer.nvim is not used anymore

to get telescope-fzf-native.nvim working, run  `:Lazy build
telescope-fzf-native.nvim`
2023-01-29 01:09:12 +01:00

18 lines
421 B
Lua

-- Author : swytch
-- Created : Sunday Jan. 29, 2023 00:50:17 CET
-- License : GPLv3
-- Description : colorscheme config file
local utils = require("utils")
local file = os.getenv("XDG_STATE_HOME") .. "/nvim_colorscheme"
local colorscheme = utils.lines_from(file)[0]
return {
{
dir = "~/.local/src/astronomy.nvim",
opts = {
variant = colorscheme,
}
},
}