i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix multiple events for autocmd

+1 -1
+1 -1
nvim/.config/nvim/lua/autocmds.lua
··· 4 4 command = "nmap <silent> <buffer> q :q<CR>", 5 5 }) 6 6 7 - vim.api.nvim_create_autocmd("BufRead,BufNewFile", { 7 + vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, { 8 8 pattern = ".envrc*", 9 9 command = "set filetype=bash", 10 10 })