nvim

Neovim configuration
git clone git://git.laack.co/nvim.git
Log | Files | Refs | README

commit 8eee257cdc66d0d9b4bca0f255db18f34dcf0a26
parent 914aa4b5296a8dadf19191a1b0290b644dabf518
Author: Andrew Laack <andrew@laack.co>
Date:   Fri, 29 May 2026 03:40:10 -0500

Changed keyboard mappings to match updated extension, updated upstream.

Diffstat:
Mlua/core/keymaps.lua | 8++++----
Mlua/core/plugins.lua | 5+----
2 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua @@ -198,7 +198,7 @@ vim.api.nvim_set_keymap('n', 'B', ':bprevious<CR>', { noremap = true, silent = t -- vim.api.nvim_set_hl(0, 'FloatBorder', { fg = '#888888', bg = 'NONE' }) -vim.api.nvim_set_keymap('n', '<leader>fc', ':Flash<CR>', {}) -vim.api.nvim_set_keymap('n', '<leader>fn', ':NextCard<CR>', {}) -vim.api.nvim_set_keymap('n', '<leader>fp', ':PreviousCard<CR>', {}) -vim.api.nvim_set_keymap('n', '<leader>ff', ':Flip<CR>', {}) +vim.api.nvim_set_keymap('n', '<leader>f', ':Flash<CR>', {}) +-- vim.api.nvim_set_keymap('n', '<leader>fn', ':NextCard<CR>', {}) +-- vim.api.nvim_set_keymap('n', '<leader>fp', ':PreviousCard<CR>', {}) +-- vim.api.nvim_set_keymap('n', '<leader>ff', ':Flip<CR>', {}) diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua @@ -140,7 +140,7 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config -- I cleared some of these shortcuts because it tried to use leader key... :( -- vim.g.llama_config = { - endpoint_fim = 'https://code-completion.andrew-code-completion.selfhost.imbue.com/infill', + endpoint_fim = 'https://code-completion.andrew-gpu-testing.selfhost.imbue.com/infill', api_key = os.getenv('LLAMA_API_KEY') or '', n_predict = 128, t_max_predict_ms = 5000, @@ -156,9 +156,6 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config keymap_debug_toggle = "", } - -- - - -- needed for icons for telescope -- use("nvim-tree/nvim-web-devicons")