mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
Chore: clean up
This commit is contained in:
@@ -5,50 +5,36 @@ if not vim.loop.fs_stat(lazypath) then
|
|||||||
"clone",
|
"clone",
|
||||||
"--filter=blob:none",
|
"--filter=blob:none",
|
||||||
"https://github.com/folke/lazy.nvim.git",
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
"--branch=stable", -- latest stable release
|
"--branch=stable",
|
||||||
lazypath,
|
lazypath,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
local plugins = {
|
local plugins = {
|
||||||
{
|
{ "folke/zen-mode.nvim" },
|
||||||
"folke/zen-mode.nvim",
|
|
||||||
opts = {
|
|
||||||
-- your configuration comes here
|
|
||||||
-- or leave it empty to use the default settings
|
|
||||||
-- refer to the configuration section below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"nvim-neo-tree/neo-tree.nvim",
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
branch = "v3.x",
|
branch = "v3.x",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
"nvim-tree/nvim-web-devicons",
|
||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
"3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
"3rd/image.nvim",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
||||||
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||||
{
|
{
|
||||||
"navarasu/onedark.nvim",
|
"navarasu/onedark.nvim",
|
||||||
config = { -- Lua
|
config = {
|
||||||
-- Main options --
|
style = 'warmer',
|
||||||
style = 'warmer', -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
transparent = true,
|
||||||
transparent = false, -- Show/hide background
|
term_colors = true,
|
||||||
term_colors = true, -- Change terminal color as per the selected theme style
|
ending_tildes = false,
|
||||||
ending_tildes = false, -- Show the end-of-buffer tildes. By default they are hidden
|
cmp_itemkind_reverse = false,
|
||||||
cmp_itemkind_reverse = false, -- reverse item kind highlights in cmp menu
|
toggle_style_key = nil,
|
||||||
|
toggle_style_list = { 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light' },
|
||||||
-- toggle theme style ---
|
|
||||||
toggle_style_key = nil, -- keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "<leader>ts"
|
|
||||||
toggle_style_list = { 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light' }, -- List of styles to toggle between
|
|
||||||
|
|
||||||
-- Change code style ---
|
|
||||||
-- Options are italic, bold, underline, none
|
|
||||||
-- You can configure multiple style with comma separated, For e.g., keywords = 'italic,bold'
|
|
||||||
code_style = {
|
code_style = {
|
||||||
comments = 'italic',
|
comments = 'italic',
|
||||||
keywords = 'none',
|
keywords = 'none',
|
||||||
@@ -56,21 +42,15 @@ local plugins = {
|
|||||||
strings = 'none',
|
strings = 'none',
|
||||||
variables = 'none'
|
variables = 'none'
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Lualine options --
|
|
||||||
lualine = {
|
lualine = {
|
||||||
transparent = false, -- lualine center bar transparency
|
transparent = false,
|
||||||
},
|
},
|
||||||
|
colors = {},
|
||||||
-- Custom Highlights --
|
highlights = {},
|
||||||
colors = {}, -- Override default colors
|
|
||||||
highlights = {}, -- Override highlight groups
|
|
||||||
|
|
||||||
-- Plugins Config --
|
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
darker = true, -- darker colors for diagnostic
|
darker = true,
|
||||||
undercurl = true, -- use undercurl instead of underline for diagnostics
|
undercurl = true,
|
||||||
background = true, -- use background color for virtual text
|
background = true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -102,11 +82,9 @@ local plugins = {
|
|||||||
{ "norcalli/nvim-colorizer.lua" },
|
{ "norcalli/nvim-colorizer.lua" },
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
--tag = "0.1.2",
|
|
||||||
branch = "0.1.x",
|
branch = "0.1.x",
|
||||||
dependencies = { "nvim-lua/plenary.nvim", { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } },
|
dependencies = { "nvim-lua/plenary.nvim", { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } },
|
||||||
},
|
},
|
||||||
{
|
|
||||||
{
|
{
|
||||||
"akinsho/toggleterm.nvim",
|
"akinsho/toggleterm.nvim",
|
||||||
version = "*",
|
version = "*",
|
||||||
@@ -129,7 +107,6 @@ local plugins = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
local opts = {}
|
local opts = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user