[zsh,nvim] Set up vim's &path based on zsh's FPATH

This commit is contained in:
Eryn Wells 2023-03-29 12:52:01 -07:00
parent 711dd78a2f
commit d1e8f59c53
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,6 @@
-- Eryn Wells <eryn@erynwells.me>
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
pattern = {"*/zsh/*"},
command = "setfiletype zsh",
})