Compare commits

...

2 commits

3 changed files with 28 additions and 0 deletions

View file

@ -21,5 +21,6 @@ require("lazy").setup({ { import = "plugins" } })
require("sets")
require("remaps")
require("filetypes")
require("commands")
vim.notify("starting nvim 🏕️")

21
lua/commands.lua Normal file
View file

@ -0,0 +1,21 @@
vim.api.nvim_create_user_command("Tabs",
function(opts)
vim.bo[0].expandtab = false
if (opts.fargs[1] ~= nil) then
vim.bo[0].shiftwidth = tonumber(opts.fargs[1])
vim.bo[0].tabstop = tonumber(opts.fargs[1])
end
end,
{ nargs = "?" }
)
vim.api.nvim_create_user_command("NoTabs",
function(opts)
vim.bo[0].expandtab = true
if (opts.fargs[1] ~= nil) then
vim.bo[0].shiftwidth = tonumber(opts.fargs[1])
vim.bo[0].tabstop = tonumber(opts.fargs[1])
end
end,
{ nargs = "?" }
)

View file

@ -12,5 +12,11 @@ vim.filetype.add({
end,
idr = "idris2",
wgsl = "wgsl",
nix = function(_, bufnr)
vim.bo[bufnr].shiftwidth = 2
vim.bo[bufnr].tabstop = 2
vim.bo[bufnr].expandtab = true
return "nix"
end,
},
})