feat: Rearranges some file locations, adds install web apps script for a new machine.

This commit is contained in:
2025-09-26 21:41:59 -04:00
parent 824d3e20da
commit 129f452045
13 changed files with 95 additions and 8 deletions

View File

@@ -1,3 +1,15 @@
-- bootstrap lazy.nvim, LazyVim and your plugin
vim.g.netrw_browsex_viewer = "xdg-open"
require("config.lazy")
vim.filetype.add({
pattern = {
[".*"] = function(path, bufnr)
local first_line = vim.api.nvim_buf_get_lines(bufnr, 0, 1, false)[1] or ""
if first_line:match("^#!.*zsh") then
return "bash"
end
end,
},
})