mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 16:05:58 +01:00
commit
7bf6594755
2 changed files with 4 additions and 4 deletions
|
@ -15,3 +15,5 @@
|
||||||
* Improved handling of completion formatting. When setting <<opt-vim.autocomplete.sources>>, can also include optional menu mapping. And can provide your own function with <<opt-vim.autocomplete.formatting.format>>.
|
* Improved handling of completion formatting. When setting <<opt-vim.autocomplete.sources>>, can also include optional menu mapping. And can provide your own function with <<opt-vim.autocomplete.formatting.format>>.
|
||||||
|
|
||||||
* For <<opt-vim.visuals.indentBlankline.fillChar>> and <<opt-vim.visuals.indentBlankline.eolChar>> turning them off should use `null` rather than `""` now.
|
* For <<opt-vim.visuals.indentBlankline.fillChar>> and <<opt-vim.visuals.indentBlankline.eolChar>> turning them off should use `null` rather than `""` now.
|
||||||
|
|
||||||
|
* Fixed deprecated configuration method for Tokyonight, and added new style "moon"
|
||||||
|
|
|
@ -12,11 +12,9 @@
|
||||||
|
|
||||||
tokyonight = {
|
tokyonight = {
|
||||||
setup = {style ? "night"}: ''
|
setup = {style ? "night"}: ''
|
||||||
-- need to set style before colorscheme to apply
|
vim.cmd[[colorscheme tokyonight-${style}]]
|
||||||
vim.g.tokyonight_style = '${style}'
|
|
||||||
vim.cmd[[colorscheme tokyonight]]
|
|
||||||
'';
|
'';
|
||||||
styles = ["day" "night" "storm"];
|
styles = ["day" "night" "storm" "moon"];
|
||||||
};
|
};
|
||||||
|
|
||||||
dracula = {
|
dracula = {
|
||||||
|
|
Loading…
Reference in a new issue