init
This commit is contained in:
commit
1e2ca5a6fc
71 changed files with 3330 additions and 0 deletions
6
config/colorscheme/gruvbox.nix
Normal file
6
config/colorscheme/gruvbox.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
colorschemes.gruvbox = {
|
||||
enable = true;
|
||||
settings.transparent_mode = true;
|
||||
};
|
||||
}
|
||||
66
config/colorscheme/onedark.nix
Normal file
66
config/colorscheme/onedark.nix
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
colorschemes.onedark = {
|
||||
enable = true;
|
||||
settings = {
|
||||
transparent = true;
|
||||
style = "darker";
|
||||
diagnostics = {
|
||||
darker = true; # -- darker colors for diagnostic
|
||||
undercurl = true; # -- use undercurl instead of underline for diagnostics
|
||||
background = true; # -- use background color for virtual text
|
||||
};
|
||||
};
|
||||
};
|
||||
# extraConfigLua = ''
|
||||
# ----------------------------------
|
||||
# -- START custom setup for onedark
|
||||
# ----------------------------------
|
||||
# -- https://github.com/navarasu/onedark.nvim
|
||||
# require('onedark').setup {
|
||||
# -- Main options --
|
||||
# style = 'darker', -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
||||
# transparent = true, -- Show/hide background
|
||||
# term_colors = true, -- Change terminal color as per the selected theme style
|
||||
# ending_tildes = false, -- Show the end-of-buffer tildes. By default they are hidden
|
||||
# cmp_itemkind_reverse = false, -- reverse item kind highlights in cmp menu
|
||||
|
||||
# -- 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_key = "<leader>ts", -- 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
|
||||
# toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer'}, -- List of styles to toggle between
|
||||
|
||||
# -- Change code style ---
|
||||
# -- Options are italic, bold, underline, none
|
||||
# -- You can configure multiple style with comma seperated, For e.g., keywords = 'italic,bold'
|
||||
# code_style = {
|
||||
# comments = 'italic',
|
||||
# keywords = 'none',
|
||||
# functions = 'none',
|
||||
# strings = 'none',
|
||||
# variables = 'none'
|
||||
# },
|
||||
|
||||
# -- Lualine options --
|
||||
# -- lualine = {
|
||||
# -- transparent = true, -- lualine center bar transparency
|
||||
# -- },
|
||||
|
||||
# -- Custom Highlights --
|
||||
# colors = {}, -- Override default colors
|
||||
# highlights = {}, -- Override highlight groups
|
||||
|
||||
# -- Plugins Config --
|
||||
# diagnostics = {
|
||||
# darker = true, -- darker colors for diagnostic
|
||||
# undercurl = true, -- use undercurl instead of underline for diagnostics
|
||||
# background = true, -- use background color for virtual text
|
||||
# },
|
||||
# }
|
||||
|
||||
# require('onedark').load()
|
||||
# ----------------------------------
|
||||
# -- END custom setup for onedark
|
||||
# ----------------------------------
|
||||
# '';
|
||||
}
|
||||
12
config/colorscheme/tokyonight.nix
Normal file
12
config/colorscheme/tokyonight.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
colorschemes.tokyonight = {
|
||||
enable = true;
|
||||
settings = {
|
||||
transparent = true;
|
||||
styles = {
|
||||
sidebars = "transparent";
|
||||
floats = "transparent";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
config/colorscheme/transparency.nix
Normal file
7
config/colorscheme/transparency.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
# use this to sen transparency instead to keep nvim-scrollview bar transparent
|
||||
extraConfigLua = ''
|
||||
-- :highlight Normal guibg = none
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue