parent
14e5f340d4
commit
bffc38cfb9
Binary file not shown.
@ -1,52 +0,0 @@
|
|||||||
return {
|
|
||||||
--Gruvbox colorscheme
|
|
||||||
{
|
|
||||||
"ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ...
|
|
||||||
},
|
|
||||||
|
|
||||||
--tokyonight colorscheme
|
|
||||||
{
|
|
||||||
"folke/tokyonight.nvim",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
opts = {},
|
|
||||||
config = function()
|
|
||||||
require("tokyonight").setup({
|
|
||||||
-- your configuration comes here
|
|
||||||
-- or leave it empty to use the default settings
|
|
||||||
style = "night", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
|
|
||||||
light_style = "day", -- The theme is used when the background is set to light
|
|
||||||
transparent = false, -- Enable this to disable setting the background color
|
|
||||||
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in [Neovim](https://github.com/neovim/neovim)
|
|
||||||
styles = {
|
|
||||||
-- Style to be applied to different syntax groups
|
|
||||||
-- Value is any valid attr-list value for `:help nvim_set_hl`
|
|
||||||
comments = { italic = true },
|
|
||||||
keywords = { italic = true },
|
|
||||||
functions = {},
|
|
||||||
variables = {},
|
|
||||||
-- Background styles. Can be "dark", "transparent" or "normal"
|
|
||||||
sidebars = "dark", -- style for sidebars, see below
|
|
||||||
floats = "dark", -- style for floating windows
|
|
||||||
},
|
|
||||||
|
|
||||||
sidebars = { "qf", "help" }, -- Set a darker background on sidebar-like windows. For example: `["qf", "vista_kind", "terminal", "packer"]`
|
|
||||||
day_brightness = 0.3, -- Adjusts the brightness of the colors of the **Day** style. Number between 0 and 1, from dull to vibrant colors
|
|
||||||
hide_inactive_statusline = false, -- Enabling this option, will hide inactive statuslines and replace them with a thin border instead. Should work with the standard **StatusLine** and **LuaLine**.
|
|
||||||
dim_inactive = false, -- dims inactive windows
|
|
||||||
lualine_bold = false, -- When `true`, section headers in the lualine theme will be bold
|
|
||||||
|
|
||||||
--- You can override specific color groups to use other groups or a hex color
|
|
||||||
--- function will be called with a ColorScheme table
|
|
||||||
---@param colors ColorScheme
|
|
||||||
on_colors = function(colors) end,
|
|
||||||
|
|
||||||
--- You can override specific highlights to use other groups or a hex color
|
|
||||||
--- function will be called with a Highlights and ColorScheme table
|
|
||||||
---@param highlights Highlights
|
|
||||||
---@param colors ColorScheme
|
|
||||||
on_highlights = function(highlights, colors) end,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
},
|
|
||||||
}
|
|
@ -0,0 +1,5 @@
|
|||||||
|
-- You can add your own plugins here or in other files in this directory!
|
||||||
|
-- I promise not to create any merge conflicts in this directory :)
|
||||||
|
--
|
||||||
|
-- See the kickstart.nvim README for more information
|
||||||
|
return {}
|
@ -1,40 +0,0 @@
|
|||||||
return {
|
|
||||||
'nvim-tree/nvim-web-devicons',
|
|
||||||
override = {
|
|
||||||
zsh = {
|
|
||||||
icon = "",
|
|
||||||
color = "#428850",
|
|
||||||
cterm_color = "65",
|
|
||||||
name = "Zsh"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
-- globally enable different highlight colors per icon (default to true)
|
|
||||||
-- if set to false all icons will have the default icon's color
|
|
||||||
color_icons = true,
|
|
||||||
-- globally enable default icons (default to false)
|
|
||||||
-- will get overriden by `get_icons` option
|
|
||||||
default = true,
|
|
||||||
-- globally enable "strict" selection of icons - icon will be looked up in
|
|
||||||
-- different tables, first by filename, and if not found by extension; this
|
|
||||||
-- prevents cases when file doesn't have any extension but still gets some icon
|
|
||||||
-- because its name happened to match some extension (default to false)
|
|
||||||
strict = true,
|
|
||||||
-- same as `override` but specifically for overrides by filename
|
|
||||||
-- takes effect when `strict` is true
|
|
||||||
override_by_filename = {
|
|
||||||
[".gitignore"] = {
|
|
||||||
icon = "",
|
|
||||||
color = "#f1502f",
|
|
||||||
name = "Gitignore"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
-- same as `override` but specifically for overrides by extension
|
|
||||||
-- takes effect when `strict` is true
|
|
||||||
override_by_extension = {
|
|
||||||
["log"] = {
|
|
||||||
icon = "",
|
|
||||||
color = "#81e043",
|
|
||||||
name = "Log"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue