mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 16:48:58 +02:00
uhuh
This commit is contained in:
parent
95d6bddeff
commit
feb9bbb0bd
2 changed files with 30 additions and 5 deletions
|
@ -1,9 +1,33 @@
|
|||
return {
|
||||
{
|
||||
'quarto-dev/quarto-nvim',
|
||||
opts = {
|
||||
lspFeatures = {
|
||||
enabled = true,
|
||||
chunks = 'curly',
|
||||
},
|
||||
codeRunner = {
|
||||
enabled = true,
|
||||
default_method = 'slime',
|
||||
},
|
||||
},
|
||||
dependencies = {
|
||||
'jmbuhr/otter.nvim',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
'jpalardy/vim-slime',
|
||||
dev = false,
|
||||
init = function()
|
||||
vim.g.slime_target = 'tmux'
|
||||
-- vim.g.slime_default_config = {"socket_name" = "default", "target_pane" = "{last}"}
|
||||
vim.g.slime_default_config = {
|
||||
-- Lua doesn't have a string split function!
|
||||
socket_name = vim.api.nvim_eval 'get(split($TMUX, ","), 0)',
|
||||
target_pane = '{bottom}',
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue