Expand tab with 4 spaces and change colorscheme to gruvbox

This commit is contained in:
Arkaprabha Chakraborty
2024-09-30 23:06:35 +05:30
parent 4ee3e596f9
commit c4d98040ca
11 changed files with 532 additions and 532 deletions

View File

@@ -2,13 +2,13 @@
-- This function is taken from https://github.com/norcalli/nvim_utils
local function nvim_create_augroups(definitions)
for group_name, definition in pairs(definitions) do
vim.api.nvim_command('augroup ' .. group_name)
vim.api.nvim_command('autocmd!')
vim.api.nvim_command("augroup " .. group_name)
vim.api.nvim_command("autocmd!")
for _, def in ipairs(definition) do
local command = table.concat(vim.tbl_flatten { 'autocmd', def }, ' ')
local command = table.concat(vim.tbl_flatten({ "autocmd", def }), " ")
vim.api.nvim_command(command)
end
vim.api.nvim_command('augroup END')
vim.api.nvim_command("augroup END")
end
end