diff --git a/nvim/init.lua b/nvim/init.lua index 890bc7b..5d48f89 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -159,23 +159,6 @@ require("lazy").setup({ map("", "g*", "(asterisk-gz*)", {}) end, }, - { - -- better search - "kevinhwang91/nvim-hlslens", - dependencies = { - "nvim-lua/plenary.nvim", - "haya14busa/vim-asterisk", - }, - config = function() - require("hlslens").setup() - local map = vim.keymap.set - local opts = { noremap = true, silent = true } - map({}, "*", "[[(asterisk-z*)lua require('hlslens').start()]]", opts) - map({}, "g*", "[[(asterisk-gz*)lua require('hlslens').start()]]", opts) - map({}, "n", [[execute('normal! ' . v:count1 . 'n')lua require('hlslens').start()]], opts) - map({}, "N", [[execute('normal! ' . v:count1 . 'N')lua require('hlslens').start()]], opts) - end, - }, { -- folder tree "nvim-neo-tree/neo-tree.nvim", @@ -203,8 +186,6 @@ require("lazy").setup({ end, }, -- theme dark only "tomasr/molokai", - "kdheepak/monochrome.nvim", - "kcsongor/vim-monochrome-light", "jnurmine/Zenburn", { -- coloring of colornames @@ -256,7 +237,6 @@ require("lazy").setup({ }) end, }, - "Joorem/vim-haproxy", { "akinsho/nvim-bufferline.lua", dependencies = { "nvim-tree/nvim-web-devicons" }, @@ -802,7 +782,7 @@ require("lazy").setup({ lsp_doc_border = false, -- add a border to hover docs and signature help }, messages = { - enabled = false, + enabled = true, }, }) end,