Compare commits
No commits in common. "af404f232939a636e34a846fbab66df5fc134bf7" and "b2fe47460500090114c967da48d617ce84b8b64a" have entirely different histories.
af404f2329
...
b2fe474605
7
init.lua
7
init.lua
|
@ -29,6 +29,13 @@ require('lazy').setup({
|
||||||
'sainnhe/gruvbox-material',
|
'sainnhe/gruvbox-material',
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
-- config = function()
|
||||||
|
-- vim.g.gruvbox_material_background = 'soft'
|
||||||
|
-- vim.g.gruvbox_material_better_performance = 1
|
||||||
|
-- vim.g.gruvbox_material_enable_italic = 1
|
||||||
|
--
|
||||||
|
-- vim.cmd.colorscheme 'gruvbox-material'
|
||||||
|
-- end,
|
||||||
config = function()
|
config = function()
|
||||||
vim.o.background = 'dark'
|
vim.o.background = 'dark'
|
||||||
vim.g.gruvbox_material_background = 'light'
|
vim.g.gruvbox_material_background = 'light'
|
||||||
|
|
|
@ -13,17 +13,3 @@ vim.api.nvim_create_autocmd('TextYankPost', {
|
||||||
group = highlight_group,
|
group = highlight_group,
|
||||||
pattern = '*',
|
pattern = '*',
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
|
|
||||||
pattern = '*.gitlab-ci*.{yml,yaml}',
|
|
||||||
callback = function()
|
|
||||||
vim.bo.filetype = 'yaml.gitlab'
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
|
|
||||||
pattern = vim.fn.expand '~' .. '/.ssh/config.d/*.config',
|
|
||||||
callback = function()
|
|
||||||
vim.bo.filetype = 'sshconfig'
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
Loading…
Reference in New Issue