You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
A fancy but yet sophisticated light and dark designer neovim theme built with [lush.nvim](https://github.com/rktjmp/lush.nvim).
4
4
It features a much more comprehensive usage of syntax scopes and color
5
5
consistency, with due regards to aesthetics, contrast and readability.
6
-
Most popular plugins are also supported, see _plugins_ (link)
6
+
Most popular plugins are also supported, see [Plugins](#plugins)
7
7
8
8
This theme also works very good when Apple's **Nightshift Mode** is activated.
9
9
@@ -77,16 +77,17 @@ use {
77
77
78
78
## Usage
79
79
80
-
Enable the colorscheme with defaults.
81
-
82
80
> ⚠️ The `setup()` function is optional but please call it
83
81
> **before** you set the colorscheme if you want to adjust the config.
84
82
83
+
These are the default values:
84
+
85
85
```lua
86
86
require("bluloco").setup({
87
87
style="auto" -- "auto" | "dark" | "light"
88
88
transparent=false,
89
89
italics=false,
90
+
terminal=vim.fn.has("gui_running") ==1-- bluoco colors are enabled in gui terminals per default.
90
91
})
91
92
92
93
vim.cmd('colorscheme bluloco')
@@ -136,6 +137,17 @@ See: bluloco theme for iTerm2 -->
136
137
137
138
This setting will enable italics for _keywords_, _comments_ and _markup attributes_.
138
139
140
+
### Terminal
141
+
142
+
This setting will enable the bluloco colors in your integrated terminal.
143
+
You most likely want to keep your terminal colors instead of overriding them if you are running neovim in a terminal.
144
+
When you are running neovim inside a gui application this setting is enabled per default.
145
+
146
+
You can skip the `terminal` setting completely to have it disabled in terminals and enabled in gui neovim.
147
+
148
+
> ℹ️ Please note that some terminals will display bold text as the bright color variant but enabling this feature will override this behavior in the intergrated terminal. This is by design and has nothing to do with this theme. [see](https://github.com/neovim/neovim/issues/11335)
0 commit comments