minor update

This commit is contained in:
Alexander Navarro 2025-07-10 16:16:31 -04:00
parent 5c9c12f32c
commit 60a8a14667
2 changed files with 5 additions and 2 deletions

View file

@ -32,6 +32,7 @@ vim.opt.list = true -- Sets how neovim will display certain whitespace ch
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
opt.mouse = "a" -- Enable mouse mode
opt.number = true -- Print line number
opt.nrformats = 'blank,bin,hex'
opt.pumblend = 10 -- Popup blend
opt.pumheight = 10 -- Maximum number of entries in a popup
opt.relativenumber = true -- Relative line numbers
@ -154,11 +155,12 @@ vim.filetype.add({
-- ╰─────────────────────────────────────────────────────────╯
vim.lsp.enable({
"ansiblels",
"lua_ls",
"nushell",
"pyright",
"ruff",
"rust_analyzer",
"ansiblels",
})
vim.diagnostic.config({

View file

@ -1,6 +1,7 @@
return {
"nvim-treesitter/nvim-treesitter",
event = { "BufReadPost", "BufNewFile", "BufWritePre", "VeryLazy" },
lazy = false,
branch = "master",
dependencies = {
{
"JoosepAlviste/nvim-ts-context-commentstring",