diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 21:03:26 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 21:03:26 +0200 |
| commit | 9d4d6f9a7a0002e38b0b5490391afbe0718870d5 (patch) | |
| tree | cea62da087f352b9fa7ae6421037ef7cf19e419e /common/home/programs/nixvim | |
| parent | 93d9d01abf82fcd520c3d0c08440c9e9747654f1 (diff) | |
waybar all worspaces & add pass-otp
Diffstat (limited to 'common/home/programs/nixvim')
| -rw-r--r-- | common/home/programs/nixvim/default.nix | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/home/programs/nixvim/default.nix b/common/home/programs/nixvim/default.nix index 5fe75d9..1d8c13b 100644 --- a/common/home/programs/nixvim/default.nix +++ b/common/home/programs/nixvim/default.nix @@ -116,8 +116,6 @@ cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() - elseif require("luasnip").expand_or_jumpable() then - vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plugin>luasnip-expand-or-jump", true, true, true), "") else fallback() end @@ -127,8 +125,6 @@ cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() - elseif require("luasnip").jumpable(-1) then - vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plugin>luasnip-jump-prev", true, true, true), "") else fallback() end |