Compare commits
2 Commits
b2fe474605
...
af404f2329
Author | SHA1 | Date |
---|---|---|
Matej Janezic | af404f2329 | |
Matej Janezic | 7c09124f3d |
7
init.lua
7
init.lua
|
@ -29,13 +29,6 @@ require('lazy').setup({
|
|||
'sainnhe/gruvbox-material',
|
||||
priority = 1000,
|
||||
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()
|
||||
vim.o.background = 'dark'
|
||||
vim.g.gruvbox_material_background = 'light'
|
||||
|
|
|
@ -13,3 +13,17 @@ vim.api.nvim_create_autocmd('TextYankPost', {
|
|||
group = highlight_group,
|
||||
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