Some convenience functions

This commit is contained in:
christiangun 2025-04-29 13:14:17 +02:00
parent 9d8e21d5b6
commit 7ed8363908
1 changed files with 27 additions and 0 deletions

27
lua/custom/set.lua Normal file
View File

@ -0,0 +1,27 @@
-- We do some overrides for Kickstart configs here
-- to avoid conflicts from the upstream in the future.
-- require('conform').format_on_save = false
-- require('treesitter.configs').opts.ensure_installed = {
-- 'bash',
-- 'c',
-- 'diff',
-- 'html',
-- 'lua',
-- 'luadoc',
-- 'markdown',
-- 'markdown_inline',
-- 'query',
-- 'vim',
-- 'vimdoc',
-- 'php',
-- 'javascript',
-- 'html',
-- 'css',
-- }
vim.api.nvim_create_user_command('Logs', ':e /tmp/ts_d', {})
vim.api.nvim_create_user_command('Fixtabs', ':set tabstop=4', {})
return {} -- This feels pretty dumb