Add vim log highlight
This commit is contained in:
parent
733c2d28c8
commit
df3391a4cf
|
@ -0,0 +1,6 @@
|
||||||
|
vim.opt.tabstop = 4 -- Set tabstop to 4 spaces
|
||||||
|
vim.opt.shiftwidth = 4 -- Set shiftwidth to 4 spaces
|
||||||
|
vim.opt.smarttab = true -- Enable smarttab
|
||||||
|
vim.opt.expandtab = true -- Convert tabs to spaces
|
||||||
|
vim.opt.smartindent = true -- Enable smart indentation
|
||||||
|
vim.opt.autoindent = true -- Enable auto indentation
|
|
@ -2,4 +2,10 @@
|
||||||
-- I promise not to create any merge conflicts in this directory :)
|
-- I promise not to create any merge conflicts in this directory :)
|
||||||
--
|
--
|
||||||
-- See the kickstart.nvim README for more information
|
-- See the kickstart.nvim README for more information
|
||||||
return {}
|
return {
|
||||||
|
{
|
||||||
|
'mtdl9/vim-log-highlighting',
|
||||||
|
opts = {},
|
||||||
|
config = function() end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue