Merge branch 'main' into fix/tailwindcss-settings

This commit is contained in:
Torbjørn Vatn 2025-01-08 09:56:55 +01:00 committed by GitHub
commit 42540bd250
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 16 deletions

View file

@ -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*

View file

@ -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",
},
},
},

View file

@ -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"