diff --git a/init.lua b/init.lua index 6e4891b..ee8378c 100644 --- a/init.lua +++ b/init.lua @@ -8,7 +8,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = true +vim.g.have_nerd_font = false -- [[ Setting options ]] require 'options' diff --git a/lua/plugins/noice.lua b/lua/plugins/noice.lua deleted file mode 100644 index 946b988..0000000 --- a/lua/plugins/noice.lua +++ /dev/null @@ -1,17 +0,0 @@ --- Highly experimental plugin that completely replaces the UI for messages, cmdline and the popupmenu. - -return { - 'folke/noice.nvim', - event = 'VeryLazy', - opts = { - -- add any options here - }, - dependencies = { - -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries - 'MunifTanjim/nui.nvim', - -- OPTIONAL: - -- `nvim-notify` is only needed, if you want to use the notification view. - -- If not available, we use `mini` as the fallback - 'rcarriga/nvim-notify', - }, -} diff --git a/lua/plugins/trouble.lua b/lua/plugins/trouble.lua deleted file mode 100644 index 7bb2ad2..0000000 --- a/lua/plugins/trouble.lua +++ /dev/null @@ -1,48 +0,0 @@ --- Joinked word-by-word from https://www.lazyvim.org/plugins/editor#troublenvim -return { -- Better diagnostics - 'folke/trouble.nvim', - cmd = { 'Trouble' }, - opts = { - modes = { - lsp = { - win = { position = 'right' }, - }, - }, - }, - keys = { - { 'xx', 'Trouble diagnostics toggle', desc = 'Diagnostics (Trouble)' }, - { 'xX', 'Trouble diagnostics toggle filter.buf=0', desc = 'Buffer Diagnostics (Trouble)' }, - { 'cs', 'Trouble symbols toggle', desc = 'Symbols (Trouble)' }, - { 'cS', 'Trouble lsp toggle', desc = 'LSP references/definitions/... (Trouble)' }, - { 'xL', 'Trouble loclist toggle', desc = 'Location List (Trouble)' }, - { 'xQ', 'Trouble qflist toggle', desc = 'Quickfix List (Trouble)' }, - { - '[q', - function() - if require('trouble').is_open() then - require('trouble').prev { skip_groups = true, jump = true } - else - local ok, err = pcall(vim.cmd.cprev) - if not ok then - vim.notify(err, vim.log.levels.ERROR) - end - end - end, - desc = 'Previous Trouble/Quickfix Item', - }, - { - ']q', - function() - if require('trouble').is_open() then - require('trouble').next { skip_groups = true, jump = true } - else - local ok, err = pcall(vim.cmd.cnext) - if not ok then - vim.notify(err, vim.log.levels.ERROR) - end - end - end, - desc = 'Next Trouble/Quickfix Item', - }, - }, -}