Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

move which-key init to lazy

+12 -7
-2
nvim/init.lua
··· 162 162 } 163 163 }) 164 164 165 - -- Set up Which Key? 166 - require("which-key").setup({}) 167 165 -- ######################## 168 166 -- # Require other configs # 169 167 -- ########################
+12 -5
nvim/lua/plugins.lua
··· 48 48 }, -- Syntax Highlighting from the future 49 49 { 50 50 "nvim-treesitter/nvim-treesitter", 51 - init = function() vim.cmd([[":TSUpdate"]]) end 51 + init = function() vim.cmd([[":TSUpdate"]]) end, 52 + build = ":TSUpdate" 52 53 }, -- Git stuff 53 54 -- GitGutter, shows inline difs 54 55 "airblade/vim-gitgutter", -- "tpope/vim-fugitive", -- old git command ··· 59 60 "sindrets/diffview.nvim", -- optional - Diff integration 60 61 "nvim-telescope/telescope.nvim" 61 62 }, 62 - config = true, 63 + config = true 63 64 }, -- surround with pairs )))))) 64 65 -- "tpope/vim-surround", 65 66 -- Auto format tool ··· 91 92 "nvim-telescope/telescope-symbols.nvim", 92 93 {"folke/trouble.nvim", dependencies = "nvim-tree/nvim-web-devicons"}, 93 94 -- Which key is bound? 94 - "folke/which-key.nvim", -- literally the best plugin ever 95 + { 96 + "folke/which-key.nvim", 97 + init = function() 98 + vim.o.timeout = true 99 + vim.o.timeoutlen = 300 100 + end, 101 + opgs = {} 102 + }, -- literally the best plugin ever 95 103 -- Developing my neovim 96 - { "folke/neodev.nvim", opts = {}}, 97 - -- Lithsps 104 + {"folke/neodev.nvim", opts = {}}, -- Lithsps 98 105 {"guns/vim-sexp", ft = {"hy", "scheme", "clojure"}}, -- )))))) 99 106 {"hiphish/rainbow-delimiters.nvim"}, 100 107 -- {"gpanders/nvim-parinfer", ft = {"scheme", "lisp", "fennel", "clojure", "lua"}},