Remove commented out stuff

This commit is contained in:
2025-10-27 19:18:57 +01:00
parent ffeed26423
commit e6af1066ef
3 changed files with 0 additions and 20 deletions
-10
View File
@@ -23,16 +23,6 @@ require'nvim-treesitter.configs'.setup {
},
}
--vim.api.nvim_create_autocmd("BufEnter", {
-- pattern = "*",
-- callback = function()
-- vim.bo.tabstop = 8
-- vim.bo.shiftwidth = 8
-- vim.bo.expandtab = false
-- end
--})
vim.api.nvim_create_autocmd("FileType", {
pattern = { "tex", "scilab" },
callback = function()
-3
View File
@@ -1,4 +1,3 @@
-- Set up nvim-cmp.
local cmp = require'cmp'
cmp.setup({
@@ -26,7 +25,6 @@ cmp.setup({
})
-- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline({ '/', '?' }, {
mapping = cmp.mapping.preset.cmdline(),
sources = {
@@ -34,7 +32,6 @@ cmp.setup.cmdline({ '/', '?' }, {
}
})
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline(':', {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({