fix: Initial pass through each neovim config section for formatting and

removing WSL
This commit is contained in:
2026-03-31 12:09:41 -05:00
parent 095cacf392
commit 0fd6336d5a
5 changed files with 32 additions and 36 deletions

View File

@@ -19,7 +19,7 @@ vim.api.nvim_create_autocmd({ 'BufReadPre' }, {
local file_size = math.floor(0.5 + (stats.size / (1024 * 1024)))
if file_size > max_filesize_MiB then
-- print(string.format('Big file detected above %sMiB. Disabling syntax, treesitter, and folding.', max_filesize_MiB))
print(string.format('File detected above %sMiB. Disabling syntax, treesitter, and folding.', max_filesize_MiB))
vim.api.nvim_command('set foldmethod=manual')
vim.api.nvim_command('set noswapfile')
vim.api.nvim_command('set noundofile')