mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-08-31 15:19:38 +02:00
Merge branch 'main' into fix/tailwindcss-settings
This commit is contained in:
commit
42540bd250
3 changed files with 5 additions and 16 deletions
|
@ -1,4 +1,4 @@
|
|||
*LazyVim.txt* For Neovim Last change: 2024 December 20
|
||||
*LazyVim.txt* For Neovim Last change: 2025 January 08
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *LazyVim-table-of-contents*
|
||||
|
|
|
@ -68,20 +68,8 @@ return {
|
|||
"saghen/blink.cmp",
|
||||
optional = true,
|
||||
opts = {
|
||||
sources = { default = { "luasnip" } },
|
||||
snippets = {
|
||||
expand = function(snippet)
|
||||
require("luasnip").lsp_expand(snippet)
|
||||
end,
|
||||
active = function(filter)
|
||||
if filter and filter.direction then
|
||||
return require("luasnip").jumpable(filter.direction)
|
||||
end
|
||||
return require("luasnip").in_snippet()
|
||||
end,
|
||||
jump = function(direction)
|
||||
require("luasnip").jump(direction)
|
||||
end,
|
||||
preset = "luasnip",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -45,8 +45,9 @@ return {
|
|||
"ibhagwan/fzf-lua",
|
||||
cmd = "FzfLua",
|
||||
opts = function(_, opts)
|
||||
local config = require("fzf-lua.config")
|
||||
local actions = require("fzf-lua.actions")
|
||||
local fzf = require("fzf-lua")
|
||||
local config = fzf.config
|
||||
local actions = fzf.actions
|
||||
|
||||
-- Quickfix
|
||||
config.defaults.keymap.fzf["ctrl-q"] = "select-all+accept"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue