Compare commits

..

3 Commits

4 changed files with 35 additions and 0 deletions

View File

@@ -1,3 +1,17 @@
-- Keymaps are automatically loaded on the VeryLazy event -- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here -- Add any additional keymaps here
--
-- movement keys (work in normal, visual, and operatorpending modes)
vim.keymap.set({ 'n', 'v', 'o' }, 'a', '<Left>', { desc = 'Move left' })
vim.keymap.set({ 'n', 'v', 'o' }, 'e', '<Down>', { desc = 'Move down' })
vim.keymap.set({ 'n', 'v', 'o' }, 'u', '<Up>', { desc = 'Move up' })
vim.keymap.set({ 'n', 'v', 'o' }, 'o', '<Right>', { desc = 'Move right' })
-- reassign original commands to freed hjkl (normal mode only)
vim.keymap.set('n', 'h', '<Cmd>normal! u<CR>', { desc = 'Undo' })
vim.keymap.set('n', 'j', '<Cmd>normal! a<CR>', { desc = 'Append' })
vim.keymap.set('n', 'k', '<Cmd>normal! e<CR>', { desc = 'End of word' })
vim.keymap.set('n', 'l', '<Cmd>normal! o<CR>', { desc = 'Open line below' })

View File

@@ -1,3 +1,6 @@
-- Options are automatically loaded before lazy.nvim startup -- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here -- Add any additional options here
--
vim.opt.relativenumber = false
vim.opt.number = true

View File

@@ -4,6 +4,7 @@ return {
-- ⚠️ must add this setting! ! ! -- ⚠️ must add this setting! ! !
build = vim.fn.has("win32") ~= 0 and "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" build = vim.fn.has("win32") ~= 0 and "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false"
or "make", or "make",
-- build = "make BUILD_FROM_SOURCE=true",
event = "VeryLazy", event = "VeryLazy",
version = false, -- Never set this value to "*"! Never! version = false, -- Never set this value to "*"! Never!
---@module 'avante' ---@module 'avante'
@@ -23,6 +24,11 @@ return {
-- model = "deepseek-chat", ds claims this endpoint is maximally compatible but being deprecated eventually -- model = "deepseek-chat", ds claims this endpoint is maximally compatible but being deprecated eventually
model = "deepseek-v4-flash", model = "deepseek-v4-flash",
disable_tools = false, disable_tools = false,
extra_request_body = {
["thinking"] = {
["type"] = "disabled",
},
},
}, },
deepseek_v4 = { deepseek_v4 = {
__inherited_from = "openai", __inherited_from = "openai",

View File

@@ -9,12 +9,24 @@ return {
}, },
}, },
-- Lush: colorscheme creation aid with real-time feedback
{ "rktjmp/lush.nvim" },
-- Darker bg in tokyonight -- Darker bg in tokyonight
{ "folke/tokyonight.nvim", opts = { style = "night" } }, { "folke/tokyonight.nvim", opts = { style = "night" } },
-- Install gruvbox as option -- Install gruvbox as option
{ "ellisonleao/gruvbox.nvim" }, { "ellisonleao/gruvbox.nvim" },
-- My Zenbones tweak for e-ink screens. Requires lush
{ "https://gut.oily.dad/finn/zenbones-theme" },
-- Override default colorscheme
{ "LazyVim/LazyVim", opts = {
-- colorscheme = "catppuccin",
colorscheme = "default",
} },
-- Flash nvim labels -- Flash nvim labels
{ {
"folke/flash.nvim", "folke/flash.nvim",