Skip to content

Commit f3ec452

Browse files
styling options, added stub function for customizing gruvbox
1 parent d273593 commit f3ec452

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

lazy-lock.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"mini.nvim": { "branch": "main", "commit": "2e38ed16c2ced64bcd576986ccad4b18e2006e18" },
1818
"neo-tree.nvim": { "branch": "main", "commit": "9b5d67119c46e3262ffe1508fe6d8540b79ad75d" },
1919
"nui.nvim": { "branch": "main", "commit": "8d3bce9764e627b62b07424e0df77f680d47ffdb" },
20+
"nvim-autopairs": { "branch": "master", "commit": "84a81a7d1f28b381b32acf1e8fe5ff5bef4f7968" },
2021
"nvim-cmp": { "branch": "main", "commit": "059e89495b3ec09395262f16b1ad441a38081d04" },
2122
"nvim-lspconfig": { "branch": "master", "commit": "3e873195f501b1e02d9fd7e5af5cbe74fc2f98c1" },
2223
"nvim-treesitter": { "branch": "master", "commit": "523a9e148919f58eb5a013f76787e57696e00c93" },

lua/sld/lazy.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,7 @@ require('lazy').setup({
768768
require 'sld.gruvbox',
769769
require 'sld.tree',
770770
require 'sld.lualine',
771+
require 'sld.autopairs',
771772
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
772773
-- This is the easiest way to modularize your config.
773774
--

lua/sld/options.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,5 @@ vim.opt.confirm = true
6969
vim.o.guicursor = 'a:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100'
7070

7171
vim.opt.termguicolors = true
72+
73+
vim.opt.wrap = false

lua/sld/style.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
local colors = require('gruvbox-material.colors').get(vim.o.background, 'hard')
2+
13
require('gruvbox-material').setup {
24
italics = false, -- enable italics in general
35
contrast = 'hard', -- set contrast, can be any of "hard", "medium", "soft"
@@ -15,7 +17,7 @@ require('gruvbox-material').setup {
1517
signs = {
1618
highlight = true, -- whether to highlight signs
1719
},
18-
customize = nil, -- customize the theme in any way you desire, see below what this
20+
customize = funtion(str_group, opt_table) {},
1921
-- configuration accepts
2022
}
2123

0 commit comments

Comments
 (0)