minor updates

This commit is contained in:
Alexander Navarro 2026-02-23 11:15:55 -03:00
parent fb431efd51
commit fb5e68da37
4 changed files with 32 additions and 30 deletions

View file

@ -655,7 +655,7 @@
"sortOrder": "name", "sortOrder": "name",
"transitionDuration": 1500, "transitionDuration": 1500,
"transitionEdgeSmoothness": 0.05, "transitionEdgeSmoothness": 0.05,
"transitionType": "random", "transitionType": "fade",
"useSolidColor": false, "useSolidColor": false,
"useWallhaven": false, "useWallhaven": false,
"viewMode": "recursive", "viewMode": "recursive",

View file

@ -17,45 +17,45 @@ end)
-- vim.o.exrc = true -- vim.o.exrc = true
-- vim.opt.list = true -- Sets how neovim will display certain whitespace characters in the editor. -- vim.opt.list = true -- Sets how neovim will display certain whitespace characters in the editor.
-- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } -- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
opt.autowrite = true -- Enable auto write opt.autowrite = true -- Enable auto write
opt.breakindent = true -- Every wrapped line will continue visually indented opt.breakindent = true -- Every wrapped line will continue visually indented
opt.completeopt = "menu,menuone,noselect" opt.completeopt = "menu,menuone,noselect"
opt.conceallevel = 2 -- Hide * markup for bold and italic opt.conceallevel = 2 -- Hide * markup for bold and italic
opt.confirm = true -- Confirm to save changes before exiting modified buffer opt.confirm = true -- Confirm to save changes before exiting modified buffer
opt.cursorline = true -- Enable highlighting of the current line opt.cursorline = true -- Enable highlighting of the current line
opt.expandtab = true -- Use spaces instead of tabs opt.expandtab = true -- Use spaces instead of tabs
opt.formatoptions = "jcroqlnt" -- tcqj opt.formatoptions = "jcroqlnt" -- tcqj
opt.grepformat = "%f:%l:%c:%m" opt.grepformat = "%f:%l:%c:%m"
opt.grepprg = "rg --vimgrep" opt.grepprg = "rg --vimgrep"
opt.ignorecase = true -- Ignore case opt.ignorecase = true -- Ignore case
opt.inccommand = "split" -- Preview substitutions live, as you type! opt.inccommand = "split" -- Preview substitutions live, as you type!
opt.mouse = "a" -- Enable mouse mode opt.mouse = "a" -- Enable mouse mode
opt.nrformats = "blank,bin,hex" opt.nrformats = "blank,bin,hex"
opt.number = true -- Print line number opt.number = true -- Print line number
opt.pumblend = 10 -- Popup blend opt.pumblend = 10 -- Popup blend
opt.pumheight = 10 -- Maximum number of entries in a popup opt.pumheight = 10 -- Maximum number of entries in a popup
-- opt.relativenumber = true -- Relative line numbers -- opt.relativenumber = true -- Relative line numbers
opt.scrolloff = 15 -- Lines of context opt.scrolloff = 15 -- Lines of context
opt.sidescrolloff = 25 -- Columns of context opt.sidescrolloff = 25 -- Columns of context
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" } opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" }
opt.shiftround = true -- Round indent opt.shiftround = true -- Round indent
opt.shiftwidth = 2 -- Size of an indent opt.shiftwidth = 2 -- Size of an indent
opt.showmode = false -- Don't show mode since we have a statusline opt.showmode = false -- Don't show mode since we have a statusline
opt.sidescrolloff = 8 -- Columns of context opt.sidescrolloff = 8 -- Columns of context
opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
opt.smartcase = true -- Don't ignore case with capitals opt.smartcase = true -- Don't ignore case with capitals
opt.smartindent = true -- Insert indents automatically opt.smartindent = true -- Insert indents automatically
opt.spelllang = { "en" } opt.spelllang = { "en" }
opt.splitbelow = true -- Put new windows below current opt.splitbelow = true -- Put new windows below current
opt.splitright = true -- Put new windows right of current opt.splitright = true -- Put new windows right of current
opt.tabstop = 2 -- Number of spaces tabs count for opt.tabstop = 2 -- Number of spaces tabs count for
opt.termguicolors = true -- True color support opt.termguicolors = true -- True color support
opt.undofile = true opt.undofile = true
opt.undolevels = 10000 opt.undolevels = 10000
opt.updatetime = 200 -- Save swap file and trigger CursorHold opt.updatetime = 200 -- Save swap file and trigger CursorHold
opt.wildmode = "longest,list:full" -- Command-line completion mode opt.wildmode = "longest,list:full" -- Command-line completion mode
opt.winminwidth = 5 -- Minimum window width opt.winminwidth = 5 -- Minimum window width
opt.wrap = false -- Disable line wrap opt.wrap = false -- Disable line wrap
vim.o.completeopt = "noselect,menu,menuone,noinsert,popup" vim.o.completeopt = "noselect,menu,menuone,noinsert,popup"
vim.o.winborder = "rounded" vim.o.winborder = "rounded"
@ -171,7 +171,7 @@ vim.g.markdown_fenced_languages = {
"ts=typescript", "ts=typescript",
} }
vim.lsp.enable("denols") -- vim.lsp.enable("denols")
vim.lsp.enable("phpactor") vim.lsp.enable("phpactor")
vim.lsp.inlay_hint.enable(true) vim.lsp.inlay_hint.enable(true)

View file

@ -53,6 +53,8 @@
"space l a": "editor::ToggleCodeActions", "space l a": "editor::ToggleCodeActions",
"space l r": "editor::Rename", "space l r": "editor::Rename",
"space l D": "editor::OpenDocs",
"g d": "editor::GoToDefinition", "g d": "editor::GoToDefinition",
"g D": "editor::GoToDefinitionSplit", "g D": "editor::GoToDefinitionSplit",
"g i": "editor::GoToImplementation", "g i": "editor::GoToImplementation",

View file

@ -137,7 +137,7 @@
"formatter": "language_server" "formatter": "language_server"
}, },
"JavaScript": { "JavaScript": {
"language_servers": ["biome"], "language_servers": ["vtsls", "biome"],
"formatter": "language_server", "formatter": "language_server",
"code_actions_on_format": { "code_actions_on_format": {
"source.fixAll.biome": true, "source.fixAll.biome": true,
@ -146,7 +146,7 @@
} }
}, },
"TypeScript": { "TypeScript": {
"language_servers": ["biome"], "language_servers": ["vtsls", "biome"],
"formatter": "language_server", "formatter": "language_server",
"code_actions_on_format": { "code_actions_on_format": {
"source.fixAll.biome": true, "source.fixAll.biome": true,