We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8e21d commit 7ed8363Copy full SHA for 7ed8363
lua/custom/set.lua
@@ -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
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