Change Theme and Enable Additional Plugins

This commit is contained in:
Minhazul Haque 2023-12-24 22:38:15 +06:00
parent 4d0dc8d4b1
commit c8ddd9fa58
6 changed files with 71 additions and 12 deletions

View file

@ -8,8 +8,8 @@ return {
config = function()
-- Switch for controlling whether you want autoformatting.
-- Use :KickstartFormatToggle to toggle autoformatting on or off
local format_is_enabled = true
vim.api.nvim_create_user_command('KickstartFormatToggle', function()
local format_is_enabled = false
vim.api.nvim_create_user_command('AutoFormat', function()
format_is_enabled = not format_is_enabled
print('Setting autoformatting to: ' .. tostring(format_is_enabled))
end, {})