Merge branch 'base' into lsp

This commit is contained in:
Saeed Afzal
2024-07-15 21:44:15 +01:00
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
plugin plugin
.DS_Store .DS_Store
lazy-lock.json

View File

@@ -11,7 +11,6 @@ api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
pattern = { "*.go" }, pattern = { "*.go" },
callback = function() callback = function()
vim.cmd [[Tabs 4]] vim.cmd [[Tabs 4]]
vim.cmd [[set nolist]]
end end
}) })

View File

@@ -34,7 +34,7 @@ opt.smartindent = true
opt.shiftwidth = 4 opt.shiftwidth = 4
opt.tabstop = 4 opt.tabstop = 4
opt.list = true opt.list = true
opt.listchars = "lead:·" opt.listchars = "lead:·,tab:··"
-- Search -- Search
vim.opt.ignorecase = true vim.opt.ignorecase = true