folke / neoconf.nvim

💼 Neovim plugin to manage global and project-local settings
Apache License 2.0
715 stars 29 forks source link

bug: filetype_jsonc doesn't work when edit a new .neoconf.json for local project #23

Closed JuanZoran closed 1 year ago

JuanZoran commented 1 year ago

Did you check docs and existing issues?

Neovim version (nvim -v)

neovim-nightly

Operating system/version

Ubuntu 22.04

Describe the bug

I think it should set filetype when edit a new file with .neoconf.json name

when I touch .neoconf.json file then edit it, the filetype is set correctly

Steps To Reproduce

  1. go to a project folder
  2. exec :e .neoconf.json

Expected Behavior

it should be set filetype with jsonc

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  "folke/neoconf.nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here