mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30:36 +00:00
feat(lsp-config.lua): update key bindings for code actions and references, remove pycodestyle config feat(lualine.lua): add functions to display Flutter Tools statusline and check if Flutter Tools is active feat(mason.lua): add kotlin_language_server to the list of supported language servers feat(molten.lua): improve configuration for Molten plugin based on file type feat(none-ls.lua): improve configuration for null-ls sources, resolve virtual environment for mypy diagnostics fix(telescope.lua): update trouble import path to sources instead of providers feat(telescope.lua): add vimgrep_arguments to improve search functionality feat(telescope.lua): add mappings for trouble.open in insert and normal mode feat(telescope.lua): load extensions flutter and dap feat(telescope.lua): define custom find_files function with specific find_command feat(trouble.lua): update trouble import path to sources instead of providers feat(trouble.lua): update mappings to use trouble_sources.open instead of trouble_telescope.open_with_trouble feat(core/init.lua): add ignorecase and smartcase options for case-insensitive searching feat(core/init.lua): add backspace option for more flexible backspacing behavior feat(core/init.lua): set cursor color based on mode in InsertEnter and InsertLeave autocmds feat(dap.lua): add nvim-nio dependency and load telescope-dap.nvim extension feat(flutter-tools.lua): add flutter-tools.nvim plugin configuration feat(molten.lua): add lazy loading and ft option for Python files feat(none-ls.lua.disabled): add none-ls.nvim plugin configuration feat(poet-v.lua): add lazy loading and ft option for Python files feat(vim-tmux-navigator.lua): update cmd and keys for vim-tmux-navigator plugin chore(remap.lua): reorganize keymap descriptions for better clarity and readability feat(remap.lua): add key mappings for jumping up, down, to next, and to previous locations with center screen feat(remap.lua): add key mappings for resizing windows right, left, up, and down by 10 lines feat(safe-invoke.lua): add utility function SafeInvoke to safely invoke functions and handle errors
64 lines
1.4 KiB
Lua
64 lines
1.4 KiB
Lua
vim.opt.nu = true
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.statuscolumn = "%s %l %r "
|
|
vim.opt.cursorline = false
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.smartindent = true
|
|
|
|
vim.opt.wrap = true
|
|
|
|
vim.opt.swapfile = false
|
|
vim.opt.backup = false
|
|
vim.opt.hlsearch = false
|
|
vim.opt.incsearch = true
|
|
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|
|
vim.opt.backspace = "indent,eol,start"
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.scrolloff = 8
|
|
vim.opt.signcolumn = "yes"
|
|
vim.opt.isfname:append("@-@")
|
|
|
|
vim.opt.updatetime = 50
|
|
|
|
vim.opt.colorcolumn = ""
|
|
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = ";"
|
|
|
|
vim.opt.guicursor = "n-v-c:block,i-ci-ve:block,r-cr:hor20,o:hor50,"
|
|
.. "a:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor,"
|
|
.. "sm:block-blinkwait175-blinkoff150-blinkon175"
|
|
|
|
-- Function to change cursor color
|
|
local function set_cursor_color(color)
|
|
vim.api.nvim_set_hl(0, "Cursor", { fg = color, bg = color })
|
|
end
|
|
|
|
-- Autocommands to change cursor color based on mode
|
|
vim.api.nvim_create_autocmd("InsertEnter", {
|
|
pattern = "*",
|
|
callback = function()
|
|
set_cursor_color("#ffffff") -- Red in insert mode
|
|
end,
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd("InsertLeave", {
|
|
pattern = "*",
|
|
callback = function()
|
|
set_cursor_color("#7DF9FF") -- Blue in visual mode
|
|
end,
|
|
})
|
|
|
|
-- Add similar autocommands for other modes as needed
|