From 15bd4c45403c6a750455df321f0b994df00986ba Mon Sep 17 00:00:00 2001 From: Pierre-Marie Charavel Date: Mon, 4 Aug 2025 19:59:30 -0400 Subject: [PATCH] neovim stuff --- .config/environment.d/neovim.conf | 2 ++ .config/nvim/init.lua | 22 +++++----------------- 2 files changed, 7 insertions(+), 17 deletions(-) create mode 100644 .config/environment.d/neovim.conf diff --git a/.config/environment.d/neovim.conf b/.config/environment.d/neovim.conf new file mode 100644 index 0000000..6dd4e6c --- /dev/null +++ b/.config/environment.d/neovim.conf @@ -0,0 +1,2 @@ +VISUAL=nvim +EDITOR=nvim diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 077fd59..f04daef 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -29,23 +29,11 @@ vim.o.termguicolors = true -- Setup lazy.nvim require("lazy").setup({ spec = { - { - "catppuccin/nvim", - name = "catppuccin", - priority = 1000 - }, - { - "nvim-telescope/telescope.nvim", - tag = "0.1.8", - dependencies = { "nvim-lua/plenary.nvim" } - }, - { - "nvim-treesitter/nvim-treesitter", - build = ":TSUpdate" - }, - { - "neovim/nvim-lspconfig" - }, + { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, + { "nvim-telescope/telescope.nvim", tag = "0.1.8", dependencies = { "nvim-lua/plenary.nvim" } }, + { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, + { "neovim/nvim-lspconfig" }, + { "sindrets/diffview.nvim" }, }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins.