From c68109aa92dc7db1efce48c5d686e5742cdf5335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Thu, 13 Jun 2024 19:40:42 +0200 Subject: [PATCH] nvim: replace lualine with feline, remove noice --- nvim/.config/nvim/lua/plugins/appearance.lua | 16 ++------- nvim/.config/nvim/lua/plugins/noice.lua | 36 -------------------- 2 files changed, 3 insertions(+), 49 deletions(-) delete mode 100644 nvim/.config/nvim/lua/plugins/noice.lua diff --git a/nvim/.config/nvim/lua/plugins/appearance.lua b/nvim/.config/nvim/lua/plugins/appearance.lua index 5d6d183..8f1411b 100644 --- a/nvim/.config/nvim/lua/plugins/appearance.lua +++ b/nvim/.config/nvim/lua/plugins/appearance.lua @@ -35,19 +35,9 @@ return { }, { - -- Statusline (see `:help lualine.txt`) - 'nvim-lualine/lualine.nvim', - opts = { - options = { - icons_enabled = false, - theme = 'auto', - component_separators = '|', - section_separators = '', - }, - sections = { - lualine_x = { cwd, 'encoding', 'fileformat', 'filetype' } - } - }, + -- Statusline + 'freddiehaddad/feline.nvim', + opts = {}, }, { diff --git a/nvim/.config/nvim/lua/plugins/noice.lua b/nvim/.config/nvim/lua/plugins/noice.lua deleted file mode 100644 index 703eb91..0000000 --- a/nvim/.config/nvim/lua/plugins/noice.lua +++ /dev/null @@ -1,36 +0,0 @@ -return { - 'folke/noice.nvim', - event = 'VeryLazy', - dependencies = { - 'MunifTanjim/nui.nvim', - 'rcarriga/nvim-notify', - }, - config = function() - local noice = require('noice') - noice.setup({ - lsp = { - -- override markdown rendering so that **cmp** and other plugins use **Treesitter** - override = { - ['vim.lsp.util.convert_input_to_markdown_lines'] = true, - ['vim.lsp.util.stylize_markdown'] = true, - ['cmp.entry.get_documentation'] = true, -- requires hrsh7th/nvim-cmp - }, - }, - -- you can enable a preset for easier configuration - presets = { - bottom_search = true, -- use a classic bottom cmdline for search - command_palette = true, -- position the cmdline and popupmenu together - long_message_to_split = true, -- long messages will be sent to a split - inc_rename = false, -- enables an input dialog for inc-rename.nvim - lsp_doc_border = false, -- add a border to hover docs and signature help - }, - }) - vim.keymap.set("n", "nl", function() - noice.cmd("last") - end) - - vim.keymap.set("n", "nh", function() - noice.cmd("history") - end) - end -}