From d5f1d56b942edaa6678e288eafd2bc360ce93010 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 9 Nov 2025 01:38:40 -0500 Subject: [PATCH] feat: Clean up in nvim config. --- env/.config/nvim/init.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/env/.config/nvim/init.lua b/env/.config/nvim/init.lua index a06c2a0..4a4a0ad 100644 --- a/env/.config/nvim/init.lua +++ b/env/.config/nvim/init.lua @@ -1,5 +1,7 @@ -- NOTE: This requires neovim >= 0.12, you can use bob to download nightly. -- + +-- Options vim.g.netrw_browsex_viewer = "xdg-open" vim.g.mapleader = " " vim.opt.number = true @@ -15,6 +17,8 @@ vim.opt.wrap = false vim.opt.smartindent = true vim.opt.termguicolors = true + +-- Plugins vim.pack.add({ { src = "https://github.com/catppuccin/nvim" }, { src = "https://github.com/nvim-mini/mini.pick" }, @@ -27,7 +31,6 @@ vim.pack.add({ { src = "https://github.com/christoomey/vim-tmux-navigator" }, { src = "https://github.com/stevearc/conform.nvim" }, { src = 'https://github.com/MeanderingProgrammer/render-markdown.nvim' }, - }) require("mason").setup({ @@ -95,6 +98,7 @@ vim.cmd(":hi statusline guibg=NONE") vim.cmd [[set completeopt+=menuone,noselect,popup]] -- LSP +-- vim.lsp.enable({ "lua_ls", "tinymist", "marksman", "bashls", "hyprls", "docker-language-server", })