diff --git a/.github/tag-changelog-config.js b/.github/tag-changelog-config.js index dacf364..bec587c 100644 --- a/.github/tag-changelog-config.js +++ b/.github/tag-changelog-config.js @@ -7,9 +7,10 @@ module.exports = { { types: ['build', 'ci'], label: '๐Ÿ—๏ธ Build System' }, { types: ['refactor'], label: '๐Ÿชš Refactors' }, { types: ['doc', 'docs'], label: '๐Ÿ“š Documentation Changes' }, + { types: ['config'], label: '๐Ÿช› Configuration Changes' }, { types: ['test', 'tests'], label: '๐Ÿ” Tests' }, - { types: ['style', 'codestyle'], label: '๐Ÿ’… Code Style Changes' }, - { types: ['chore', 'Chore'], label: '๐Ÿงน Chores' }, + { types: ['style', 'codestyle', 'lint'], label: '๐Ÿ’… Code Style Changes' }, + { types: ['chore', 'Chore', 'deps', 'Deps'], label: '๐Ÿงน Chores' }, { types: ['other', 'Other'], label: 'Other Changes' }, ], diff --git a/config/nvim/.luarc.json b/config/nvim/.luarc.json new file mode 100644 index 0000000..1e1765c --- /dev/null +++ b/config/nvim/.luarc.json @@ -0,0 +1,5 @@ +{ + "diagnostics.globals": [ + "vim" + ] +} \ No newline at end of file diff --git a/config/nvim/lua/config/options.lua b/config/nvim/lua/config/options.lua index 364065b..09d972e 100644 --- a/config/nvim/lua/config/options.lua +++ b/config/nvim/lua/config/options.lua @@ -7,7 +7,6 @@ local opt = vim.opt opt.number = true opt.relativenumber = true opt.modeline = true -opt.spelllang = { "en", "fi" } -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et