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.