1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-18 12:00:02 +02:00

nvim: remove some comments and fixing trailing spaces

This commit is contained in:
Henrik Hautakoski 2024-08-26 18:47:57 +02:00
parent 88454b931c
commit b81cbae374
3 changed files with 1 additions and 11 deletions

View file

@ -1,7 +1 @@
-- Hard tabs
-- vim.bo.expandtab = false
-- vim.bo.tabstop = 8
-- vim.bo.shiftwidth = 0
-- vim.bo.softtabstop = 0
require("user.utils.indent").setHardtabs() require("user.utils.indent").setHardtabs()

View file

@ -2,10 +2,6 @@
local M = {} local M = {}
function M.setHardtabs() function M.setHardtabs()
-- vim.bo.expandtab = false
-- vim.bo.tabstop = 8
-- vim.bo.shiftwidth = 0
-- vim.bo.softtabstop = 0
vim.cmd([[setlocal noet ts=8 sts=0 sw=0]]) vim.cmd([[setlocal noet ts=8 sts=0 sw=0]])
end end