diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index befa75b..586b6b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: node-version: "lts/*" - name: Install dependencies # @see: https://github.com/semantic-release/semantic-release/discussions/2500#discussioncomment-3118983 - run: npm --location=global i semantic-release{@19,-gitmoji} @semantic-release/git + run: npm --location=global i semantic-release{@19,-gitmoji} @semantic-release/{changelog,git} - name: Release env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.releaserc.js b/.releaserc.js index 00809d8..ed657ad 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -1,10 +1,10 @@ module.exports = { plugins: [ "semantic-release-gitmoji", + "@semantic-release/changelog", [ "@semantic-release/git", { - assets: ["CHANGELOG.md"], message: ":bookmark: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", }, diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6661f01 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# [v1.1.0](https://github.com/spaceduck-theme/nvim/compare/v1.0.1...v1.1.0) (2023-12-29) + +## ✨ New Features +- [`a7aa1ea`](https://github.com/spaceduck-theme/nvim/commit/a7aa1ea) Add highlight for float border (Issues: [`#1`](https://github.com/spaceduck-theme/nvim/issues/1)) + +# [v1.0.1](https://github.com/spaceduck-theme/nvim/compare/v1.0.0...v1.0.1) (2023-07-01) + +## 🐛 Bug Fixes +- [`5e95aa5`](https://github.com/spaceduck-theme/nvim/commit/5e95aa5) Set proper style for window separator +- [`c9307d1`](https://github.com/spaceduck-theme/nvim/commit/c9307d1) Change window separator color from cream to dark_purple (Issues: [`#5`](https://github.com/spaceduck-theme/nvim/issues/5)) + +# v1.0.0 (2022-12-20) + +## ✨ New Features +- [`62bd408`](https://github.com/spaceduck-theme/nvim/commit/62bd408) port basic spaceduck to lua +- [`00cbec8`](https://github.com/spaceduck-theme/nvim/commit/00cbec8) add lualine support + +## 🐛 Bug Fixes +- [`b351754`](https://github.com/spaceduck-theme/nvim/commit/b351754) assert syntax_on existence properly and disable broken groups +- [`ab971f0`](https://github.com/spaceduck-theme/nvim/commit/ab971f0) fix errors in lualine support +- [`73c45d1`](https://github.com/spaceduck-theme/nvim/commit/73c45d1) remove unwanted character from StatusLineTermNC diff --git a/README.md b/README.md index f0bed33..50ef456 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-

Spaceduck theme for Nvim

- Spaceduck for neovim. All Lua, all spaceduck, always intergalactic. +

Spaceduck theme for Nvim

+ Spaceduck for neovim. All Lua, all spaceduck, always intergalactic.

@@ -37,6 +37,25 @@ _Note: if something looks off please submit an issue with a screenshot_ ```lua use({ "spaceduck-theme/nvim", as = "spaceduck" }) ``` +## [lazy.nvim](https://github.com/folke/lazy.vim) + +```lua +{ "spaceduck-theme/nvim", name = "spaceduck", priority = 1000 } +``` + +If you have structure your plugins ***lua/plugins*** folder with a file per plugin, or a separate file + +```lua +return { + "spaceduck-theme/nvim", + name = "spaceduck", + lazy = false, + priority = 1000, + config = function() + vim.cmd[[colorscheme spaceduck]] + end +} +``` We use semver on spaceduck so you can refer to a specific tag if you want instead of the `master` branch. @@ -51,6 +70,8 @@ We use semver on spaceduck so you can refer to a specific tag if you want instea lualine replace mode screenshot +## [packer.nvim](https://github.com/wbthomason/packer.nvim) + ```lua require("lualine").setup({ options = { @@ -58,6 +79,19 @@ require("lualine").setup({ }, }) ``` +## [lazy.nvim](https://github.com/folke/lazy.vim) + +```lua +return { + "nvim-lualine/lualine.nvim", + dependencies = { 'nvim-tree/nvim-web-devicons' }, + opts = { + options = { + theme = 'spaceduck', + }, + }, +} +``` # Contributing