Skip to content

Commit 7ed8363

Browse files
committed
Some convenience functions
1 parent 9d8e21d commit 7ed8363

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

lua/custom/set.lua

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
-- We do some overrides for Kickstart configs here
2+
-- to avoid conflicts from the upstream in the future.
3+
-- require('conform').format_on_save = false
4+
5+
-- require('treesitter.configs').opts.ensure_installed = {
6+
-- 'bash',
7+
-- 'c',
8+
-- 'diff',
9+
-- 'html',
10+
-- 'lua',
11+
-- 'luadoc',
12+
-- 'markdown',
13+
-- 'markdown_inline',
14+
-- 'query',
15+
-- 'vim',
16+
-- 'vimdoc',
17+
-- 'php',
18+
-- 'javascript',
19+
-- 'html',
20+
-- 'css',
21+
-- }
22+
23+
vim.api.nvim_create_user_command('Logs', ':e /tmp/ts_d', {})
24+
25+
vim.api.nvim_create_user_command('Fixtabs', ':set tabstop=4', {})
26+
27+
return {} -- This feels pretty dumb

0 commit comments

Comments
 (0)