styling options, added stub function for customizing gruvbox
This commit is contained in:
parent
d27359351c
commit
f3ec45204f
|
@ -17,6 +17,7 @@
|
||||||
"mini.nvim": { "branch": "main", "commit": "2e38ed16c2ced64bcd576986ccad4b18e2006e18" },
|
"mini.nvim": { "branch": "main", "commit": "2e38ed16c2ced64bcd576986ccad4b18e2006e18" },
|
||||||
"neo-tree.nvim": { "branch": "main", "commit": "9b5d67119c46e3262ffe1508fe6d8540b79ad75d" },
|
"neo-tree.nvim": { "branch": "main", "commit": "9b5d67119c46e3262ffe1508fe6d8540b79ad75d" },
|
||||||
"nui.nvim": { "branch": "main", "commit": "8d3bce9764e627b62b07424e0df77f680d47ffdb" },
|
"nui.nvim": { "branch": "main", "commit": "8d3bce9764e627b62b07424e0df77f680d47ffdb" },
|
||||||
|
"nvim-autopairs": { "branch": "master", "commit": "84a81a7d1f28b381b32acf1e8fe5ff5bef4f7968" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "059e89495b3ec09395262f16b1ad441a38081d04" },
|
"nvim-cmp": { "branch": "main", "commit": "059e89495b3ec09395262f16b1ad441a38081d04" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "3e873195f501b1e02d9fd7e5af5cbe74fc2f98c1" },
|
"nvim-lspconfig": { "branch": "master", "commit": "3e873195f501b1e02d9fd7e5af5cbe74fc2f98c1" },
|
||||||
"nvim-treesitter": { "branch": "master", "commit": "523a9e148919f58eb5a013f76787e57696e00c93" },
|
"nvim-treesitter": { "branch": "master", "commit": "523a9e148919f58eb5a013f76787e57696e00c93" },
|
||||||
|
|
|
@ -768,6 +768,7 @@ require('lazy').setup({
|
||||||
require 'sld.gruvbox',
|
require 'sld.gruvbox',
|
||||||
require 'sld.tree',
|
require 'sld.tree',
|
||||||
require 'sld.lualine',
|
require 'sld.lualine',
|
||||||
|
require 'sld.autopairs',
|
||||||
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
||||||
-- This is the easiest way to modularize your config.
|
-- This is the easiest way to modularize your config.
|
||||||
--
|
--
|
||||||
|
|
|
@ -69,3 +69,5 @@ vim.opt.confirm = true
|
||||||
vim.o.guicursor = 'a:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100'
|
vim.o.guicursor = 'a:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100'
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
|
vim.opt.wrap = false
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
local colors = require('gruvbox-material.colors').get(vim.o.background, 'hard')
|
||||||
|
|
||||||
require('gruvbox-material').setup {
|
require('gruvbox-material').setup {
|
||||||
italics = false, -- enable italics in general
|
italics = false, -- enable italics in general
|
||||||
contrast = 'hard', -- set contrast, can be any of "hard", "medium", "soft"
|
contrast = 'hard', -- set contrast, can be any of "hard", "medium", "soft"
|
||||||
|
@ -15,7 +17,7 @@ require('gruvbox-material').setup {
|
||||||
signs = {
|
signs = {
|
||||||
highlight = true, -- whether to highlight signs
|
highlight = true, -- whether to highlight signs
|
||||||
},
|
},
|
||||||
customize = nil, -- customize the theme in any way you desire, see below what this
|
customize = funtion(str_group, opt_table) {},
|
||||||
-- configuration accepts
|
-- configuration accepts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue