diff --git a/.config/nvim/after/ftplugin/c.lua b/.config/nvim/after/ftplugin/c.lua new file mode 100644 index 0000000..6dfd3f6 --- /dev/null +++ b/.config/nvim/after/ftplugin/c.lua @@ -0,0 +1,9 @@ +-- Author : swytch +-- Created : Saturday Oct. 30, 2021 11:43:34 CET +-- License : GPLv3 +-- Description : c settings file + +local opt = vim.opt +local g = vim.g + +opt.formatoptions = "trq1jp" diff --git a/.config/nvim/after/ftplugin/lua.lua b/.config/nvim/after/ftplugin/lua.lua new file mode 100644 index 0000000..698ac52 --- /dev/null +++ b/.config/nvim/after/ftplugin/lua.lua @@ -0,0 +1,9 @@ +-- Author : swytch +-- Created : Saturday Oct. 30, 2021 11:43:21 CET +-- License : GPLv3 +-- Description : lua settings file + +local opt = vim.opt +local g = vim.g + +opt.formatoptions = "trq1jp"