mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-26 23:28:33 +02:00
Merge 22cfbc51bb
into 3338d39206
This commit is contained in:
commit
176d7069f3
1 changed files with 20 additions and 0 deletions
20
init.lua
20
init.lua
|
@ -284,6 +284,26 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ -- shows a floating buffer with the most useful vim keymaps
|
||||||
|
'Hashino/tutorial.nvim',
|
||||||
|
opts = {
|
||||||
|
enabled = true, -- whether to show Tutorial on startup
|
||||||
|
|
||||||
|
-- window configs of the floating Tutorial buffer
|
||||||
|
-- see :h nvim_open_win() for available options
|
||||||
|
float_win_config = {
|
||||||
|
relative = 'editor',
|
||||||
|
|
||||||
|
anchor = 'SW',
|
||||||
|
|
||||||
|
style = 'minimal',
|
||||||
|
border = 'rounded', -- see :h winborder for available options
|
||||||
|
|
||||||
|
noautocmd = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
|
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
|
||||||
--
|
--
|
||||||
-- This is often very useful to both group configuration, as well as handle
|
-- This is often very useful to both group configuration, as well as handle
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue