mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-17 16:51:42 +00:00
Plugin: add hardhacker
This commit is contained in:
@@ -13,6 +13,19 @@ vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
local plugins = {
|
||||
{ "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",
|
||||
branch = "v3.x",
|
||||
@@ -22,26 +35,26 @@ local plugins = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
"3rd/image.nvim",
|
||||
},
|
||||
config = { hijack_netrw_behavior = "open_default" }
|
||||
config = { hijack_netrw_behavior = "open_default" },
|
||||
},
|
||||
{ "stevearc/dressing.nvim", event = "VeryLazy" },
|
||||
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true },
|
||||
{
|
||||
"navarasu/onedark.nvim",
|
||||
config = {
|
||||
style = 'warmer',
|
||||
style = "warmer",
|
||||
transparent = true,
|
||||
term_colors = true,
|
||||
ending_tildes = false,
|
||||
cmp_itemkind_reverse = false,
|
||||
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 = {
|
||||
comments = 'italic',
|
||||
keywords = 'none',
|
||||
functions = 'none',
|
||||
strings = 'none',
|
||||
variables = 'none'
|
||||
comments = "italic",
|
||||
keywords = "none",
|
||||
functions = "none",
|
||||
strings = "none",
|
||||
variables = "none",
|
||||
},
|
||||
lualine = {
|
||||
transparent = false,
|
||||
@@ -53,7 +66,7 @@ local plugins = {
|
||||
undercurl = true,
|
||||
background = true,
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
{ "EdenEast/nightfox.nvim" },
|
||||
{ "rebelot/kanagawa.nvim" },
|
||||
@@ -100,7 +113,7 @@ local plugins = {
|
||||
open_mapping = [[<C-\>]],
|
||||
hide_numbers = true,
|
||||
start_in_insert = true,
|
||||
direction = "float",
|
||||
direction = "tab",
|
||||
close_on_exit = true,
|
||||
shell = vim.o.shell,
|
||||
float_opts = {
|
||||
|
||||
Reference in New Issue
Block a user