34 lines
793 B
Lua
34 lines
793 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
{
|
|
'rose-pine/neovim',
|
|
name = 'rose-pine',
|
|
},
|
|
{
|
|
'akinsho/toggleterm.nvim',
|
|
version = '*',
|
|
opts = {
|
|
direction = 'float',
|
|
open_mapping = [[<leader>ç]],
|
|
float_opts = {
|
|
border = 'curved',
|
|
highlights = {
|
|
border = 'Normal',
|
|
background = 'Normal',
|
|
},
|
|
},
|
|
start_in_insert = true,
|
|
autochdir = true,
|
|
insert_mappings = true,
|
|
terminal_mappings = true,
|
|
shade_terminals = false,
|
|
persist_size = true,
|
|
close_on_exit = true,
|
|
shell = vim.o.shell,
|
|
},
|
|
},
|
|
}
|