-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions to install plugin with LazyVim #21
base: dev
Are you sure you want to change the base?
Changes from 11 commits
9f0bdf3
9076b91
bc745b8
df5b872
97a5b79
23a364c
aa72ad0
f476d68
fb9a801
56790a1
3d7d6ac
478dc5e
f26f3f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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,13 +70,31 @@ We use semver on spaceduck so you can refer to a specific tag if you want instea | |
<img src="https://user-images.githubusercontent.com/32819563/111935037-3ab41d80-8a88-11eb-8797-2b6db14cbff8.png" alt="lualine replace mode screenshot"> | ||
</center> | ||
|
||
## PACKER | ||
|
||
```lua | ||
require("lualine").setup({ | ||
options = { | ||
theme = "spaceduck", | ||
}, | ||
}) | ||
``` | ||
## LAZYVIM | ||
|
||
```lua | ||
return { | ||
"nvim-lualine/lualine.nvim", | ||
dependencies = { 'nvim-tree/nvim-web-devicons' }, | ||
lazy = false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On my side it works without There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right, deleted |
||
priority = 1000, | ||
opts = { | ||
options = { | ||
globalstatus = true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I also use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right, deleted. |
||
theme = 'spaceduck', | ||
}, | ||
}, | ||
} | ||
``` | ||
|
||
# Contributing | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you capitalize just the first letter of the titles, please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes i can, but i preferred to change to hyperlinks, can you tell me if I leave it as it was and only capitalize the first letter of the titles?