Compare commits
No commits in common. "818765d45bf64a58f4979199263e46c7f24b1996" and "337b67c7a4da9f99316e5eb9124a78e9600edd0b" have entirely different histories.
818765d45b
...
337b67c7a4
1
init.lua
1
init.lua
|
@ -21,6 +21,5 @@ require("lazy").setup({ { import = "plugins" } })
|
||||||
require("sets")
|
require("sets")
|
||||||
require("remaps")
|
require("remaps")
|
||||||
require("filetypes")
|
require("filetypes")
|
||||||
require("commands")
|
|
||||||
|
|
||||||
vim.notify("starting nvim 🏕️")
|
vim.notify("starting nvim 🏕️")
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
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 = "?" }
|
|
||||||
)
|
|
|
@ -12,11 +12,5 @@ vim.filetype.add({
|
||||||
end,
|
end,
|
||||||
idr = "idris2",
|
idr = "idris2",
|
||||||
wgsl = "wgsl",
|
wgsl = "wgsl",
|
||||||
nix = function(_, bufnr)
|
|
||||||
vim.bo[bufnr].shiftwidth = 2
|
|
||||||
vim.bo[bufnr].tabstop = 2
|
|
||||||
vim.bo[bufnr].expandtab = true
|
|
||||||
return "nix"
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue