mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00: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*
|
Table of Contents *LazyVim-table-of-contents*
|
||||||
|
|
|
||||||
|
|
@ -68,20 +68,8 @@ return {
|
||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
optional = true,
|
optional = true,
|
||||||
opts = {
|
opts = {
|
||||||
sources = { default = { "luasnip" } },
|
|
||||||
snippets = {
|
snippets = {
|
||||||
expand = function(snippet)
|
preset = "luasnip",
|
||||||
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,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -45,8 +45,9 @@ return {
|
||||||
"ibhagwan/fzf-lua",
|
"ibhagwan/fzf-lua",
|
||||||
cmd = "FzfLua",
|
cmd = "FzfLua",
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
local config = require("fzf-lua.config")
|
local fzf = require("fzf-lua")
|
||||||
local actions = require("fzf-lua.actions")
|
local config = fzf.config
|
||||||
|
local actions = fzf.actions
|
||||||
|
|
||||||
-- Quickfix
|
-- Quickfix
|
||||||
config.defaults.keymap.fzf["ctrl-q"] = "select-all+accept"
|
config.defaults.keymap.fzf["ctrl-q"] = "select-all+accept"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue