[nvim] Move neovim config to /nvim
This commit is contained in:
parent
e45c1694af
commit
5b567ad2ad
28 changed files with 0 additions and 0 deletions
7
nvim/ftdetect/gohtmltmpl.lua
Normal file
7
nvim/ftdetect/gohtmltmpl.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-- Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
-- Detect layout templates in Hugo projects
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
pattern = {"*/layouts/*.html"},
|
||||
command = "setfiletype gohtmltmpl"
|
||||
})
|
||||
7
nvim/ftdetect/make.lua
Normal file
7
nvim/ftdetect/make.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-- Filetype detection for Makefiles
|
||||
-- Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
pattern = "*.make",
|
||||
command = "setfiletype make",
|
||||
})
|
||||
6
nvim/ftdetect/zsh.lua
Normal file
6
nvim/ftdetect/zsh.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
pattern = {"*/zsh/*"},
|
||||
command = "setfiletype zsh",
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue