From 426c2946706f559138a36482cefa6e007123d1da Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 3 Apr 2024 16:41:51 +0200 Subject: [PATCH] [neovim] added telescope and catpuccin colorscheme --- nix/home/neovim/neovim.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nix/home/neovim/neovim.nix b/nix/home/neovim/neovim.nix index 1656622..30319ea 100644 --- a/nix/home/neovim/neovim.nix +++ b/nix/home/neovim/neovim.nix @@ -93,6 +93,14 @@ }) end }) + + -- telescope-nvim + local builtin = require("telescope.builtin") + vim.keymap.set('n', '', builtin.find_files, {}) + + -- vimplugin-catppuccin-nvim + require("catppuccin").setup({ flavour = "mocha" }) + vim.cmd.colorscheme "catppuccin" ''; # auto-complete @@ -114,6 +122,8 @@ plugins = with pkgs.vimPlugins; [ neo-tree-nvim nvim-treesitter + telescope-nvim + catppuccin-nvim ]; }; }