Fix theme.lua dracula-pro.nvim source
This commit is contained in:
parent
a3352de2d9
commit
948675d761
4 changed files with 27 additions and 1 deletions
chezmoi/private_dot_config/nvim/lua/plugins
|
@ -0,0 +1,9 @@
|
|||
-- See current buffers at the top of the editor
|
||||
return {
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
version = "v3.*",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
opts = {},
|
||||
},
|
||||
}
|
16
chezmoi/private_dot_config/nvim/lua/plugins/statusline.lua
Normal file
16
chezmoi/private_dot_config/nvim/lua/plugins/statusline.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
-- Fancier statusline
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
config = function()
|
||||
local colorscheme = require("helpers.colorscheme")
|
||||
local lualine_theme = colorscheme == "default" and "auto" or colorscheme
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = lualine_theme,
|
||||
component_separators = "|",
|
||||
section_separators = "",
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
|
@ -26,7 +26,7 @@ return {
|
|||
end,
|
||||
dependencies = {
|
||||
{
|
||||
dir = "/Users/tony.blyler/repos/dracula-pro.nvim",
|
||||
url = "git@git.0xdad.com:tblyler/dracula-pro.nvim.git",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue