mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 03:55:04 +02:00
improve terminal keymap and lsp config
This commit is contained in:
parent
ee1be1a29a
commit
b2fd5f73e2
6 changed files with 20 additions and 26 deletions
|
@ -3,6 +3,23 @@
|
|||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {
|
||||
{
|
||||
'akinsho/toggleterm.nvim',
|
||||
version = '*',
|
||||
config = function()
|
||||
require('toggleterm').setup {
|
||||
direction = 'float',
|
||||
float_opts = {
|
||||
border = 'curved',
|
||||
width = 100,
|
||||
height = 30,
|
||||
winblend = 0,
|
||||
},
|
||||
open_mapping = [[<C-\>]],
|
||||
start_in_insert = true,
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'folke/tokyonight.nvim',
|
||||
lazy = false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue