|
|
@ -57,14 +57,26 @@ local plugins = {
|
|
|
|
opts = {}
|
|
|
|
opts = {}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[
|
|
|
|
{
|
|
|
|
{
|
|
|
|
-- Theme inspired by Atom
|
|
|
|
-- Theme inspired by Atom
|
|
|
|
|
|
|
|
--
|
|
|
|
'navarasu/onedark.nvim',
|
|
|
|
'navarasu/onedark.nvim',
|
|
|
|
priority = 1000,
|
|
|
|
priority = 1000,
|
|
|
|
config = function()
|
|
|
|
config = function()
|
|
|
|
vim.cmd.colorscheme 'onedark'
|
|
|
|
vim.cmd.colorscheme 'onedark'
|
|
|
|
end,
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
-- Theme inspired by Atom
|
|
|
|
|
|
|
|
'Mofiqul/dracula.nvim',
|
|
|
|
|
|
|
|
priority = 1000,
|
|
|
|
|
|
|
|
config = function()
|
|
|
|
|
|
|
|
vim.cmd.colorscheme 'dracula'
|
|
|
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
-- Set lualine as statusline
|
|
|
|
-- Set lualine as statusline
|
|
|
@ -73,7 +85,7 @@ local plugins = {
|
|
|
|
opts = {
|
|
|
|
opts = {
|
|
|
|
options = {
|
|
|
|
options = {
|
|
|
|
icons_enabled = true,
|
|
|
|
icons_enabled = true,
|
|
|
|
theme = 'onedark',
|
|
|
|
theme = 'dracula',
|
|
|
|
component_separators = '|',
|
|
|
|
component_separators = '|',
|
|
|
|
section_separators = { left = '', right = '' },
|
|
|
|
section_separators = { left = '', right = '' },
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -135,8 +147,8 @@ local plugins = {
|
|
|
|
require('neo-tree').setup {
|
|
|
|
require('neo-tree').setup {
|
|
|
|
filesystem = {
|
|
|
|
filesystem = {
|
|
|
|
filtered_items = {
|
|
|
|
filtered_items = {
|
|
|
|
visible = false,
|
|
|
|
visible = true,
|
|
|
|
hide_dotfiles = false,
|
|
|
|
hide_hidden = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|