neovim configuration using rocks.nvim plugin manager

fix(conform): add correct `prettierrc.json` file

Changed files
+5 -1
externals
prettier
lua
plugins
+4
externals/prettier/prettierrc.json
··· 1 + { 2 + "tabWidth": 4, 3 + "singleQuote": true 4 + }
+1 -1
lua/plugins/conform.lua
··· 31 31 prettierd = { 32 32 env = { 33 33 -- FIXME: this doesn't work for some reason 34 - PRETTIERD_DEFAULT_CONFIG = vim.fn.expand("~/.config/nvim/utils/linter-config/.prettierrc.json"), 34 + PRETTIERD_DEFAULT_CONFIG = vim.api.nvim_get_runtime_file("externals/prettier/prettierrc.json", false)[1], 35 35 }, 36 36 }, 37 37 },