mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
Plugin: add hardhacker
This commit is contained in:
@@ -13,6 +13,19 @@ vim.opt.rtp:prepend(lazypath)
|
|||||||
|
|
||||||
local plugins = {
|
local plugins = {
|
||||||
{ "folke/zen-mode.nvim" },
|
{ "folke/zen-mode.nvim" },
|
||||||
|
{
|
||||||
|
"hardhackerlabs/theme-vim",
|
||||||
|
name = "hardhacker",
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
vim.g.hardhacker_hide_tilde = 1
|
||||||
|
vim.g.hardhacker_keyword_italic = 1
|
||||||
|
-- custom highlights
|
||||||
|
vim.g.hardhacker_custom_highlights = {}
|
||||||
|
vim.cmd("colorscheme hardhacker")
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"nvim-neo-tree/neo-tree.nvim",
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
branch = "v3.x",
|
branch = "v3.x",
|
||||||
@@ -22,26 +35,26 @@ local plugins = {
|
|||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
"3rd/image.nvim",
|
"3rd/image.nvim",
|
||||||
},
|
},
|
||||||
config = { hijack_netrw_behavior = "open_default" }
|
config = { hijack_netrw_behavior = "open_default" },
|
||||||
},
|
},
|
||||||
{ "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 = {
|
config = {
|
||||||
style = 'warmer',
|
style = "warmer",
|
||||||
transparent = true,
|
transparent = true,
|
||||||
term_colors = true,
|
term_colors = true,
|
||||||
ending_tildes = false,
|
ending_tildes = false,
|
||||||
cmp_itemkind_reverse = false,
|
cmp_itemkind_reverse = false,
|
||||||
toggle_style_key = nil,
|
toggle_style_key = nil,
|
||||||
toggle_style_list = { 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light' },
|
toggle_style_list = { "dark", "darker", "cool", "deep", "warm", "warmer", "light" },
|
||||||
code_style = {
|
code_style = {
|
||||||
comments = 'italic',
|
comments = "italic",
|
||||||
keywords = 'none',
|
keywords = "none",
|
||||||
functions = 'none',
|
functions = "none",
|
||||||
strings = 'none',
|
strings = "none",
|
||||||
variables = 'none'
|
variables = "none",
|
||||||
},
|
},
|
||||||
lualine = {
|
lualine = {
|
||||||
transparent = false,
|
transparent = false,
|
||||||
@@ -53,7 +66,7 @@ local plugins = {
|
|||||||
undercurl = true,
|
undercurl = true,
|
||||||
background = true,
|
background = true,
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{ "EdenEast/nightfox.nvim" },
|
{ "EdenEast/nightfox.nvim" },
|
||||||
{ "rebelot/kanagawa.nvim" },
|
{ "rebelot/kanagawa.nvim" },
|
||||||
@@ -100,7 +113,7 @@ local plugins = {
|
|||||||
open_mapping = [[<C-\>]],
|
open_mapping = [[<C-\>]],
|
||||||
hide_numbers = true,
|
hide_numbers = true,
|
||||||
start_in_insert = true,
|
start_in_insert = true,
|
||||||
direction = "float",
|
direction = "tab",
|
||||||
close_on_exit = true,
|
close_on_exit = true,
|
||||||
shell = vim.o.shell,
|
shell = vim.o.shell,
|
||||||
float_opts = {
|
float_opts = {
|
||||||
|
|||||||
Reference in New Issue
Block a user