aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/prettier.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-12-16 23:42:45 +0200
committersrdusr <trevorgray@srdusr.com>2022-12-16 23:42:45 +0200
commit18e3249ba8bfea656b02308225684e893d0273fa (patch)
treed8c35c98bafe2404c22ae2f186b79bddd673b683 /lua/plugins/prettier.lua
downloaddotfiles-18e3249ba8bfea656b02308225684e893d0273fa.tar.gz
dotfiles-18e3249ba8bfea656b02308225684e893d0273fa.zip
Squashed '.config/nvim/' content from commit f63391e
git-subtree-dir: .config/nvim git-subtree-split: f63391eac31d51b5bab84456b6900fdb3b46a285
Diffstat (limited to 'lua/plugins/prettier.lua')
-rw-r--r--lua/plugins/prettier.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/plugins/prettier.lua b/lua/plugins/prettier.lua
new file mode 100644
index 0000000..05d4665
--- /dev/null
+++ b/lua/plugins/prettier.lua
@@ -0,0 +1,19 @@
+local status, prettier = pcall(require, "prettier")
+if (not status) then return end
+
+prettier.setup {
+ bin = 'prettierd',
+ filetypes = {
+ "c",
+ "lua",
+ "vim",
+ --"css",
+ --"javascript",
+ --"javascriptreact",
+ --"typescript",
+ --"typescriptreact",
+ --"json",
+ --"scss",
+ "less"
+ }
+}