diff --git a/.config/nvim/lazyvim.json b/.config/nvim/lazyvim.json index 91d50a5c..0ba9a9cc 100644 --- a/.config/nvim/lazyvim.json +++ b/.config/nvim/lazyvim.json @@ -28,10 +28,11 @@ "plugins.extras.git", "plugins.extras.github", "plugins.extras.rest-client", + "plugins.extras.scrollbar", "plugins.extras.test-extended" ], "news": { "NEWS.md": "2123" }, "version": 2 -} \ No newline at end of file +} diff --git a/.config/nvim/lua/plugins/extras/scrollbar.lua b/.config/nvim/lua/plugins/extras/scrollbar.lua new file mode 100644 index 00000000..e74431b5 --- /dev/null +++ b/.config/nvim/lua/plugins/extras/scrollbar.lua @@ -0,0 +1,9 @@ +return { + { + "lewis6991/satellite.nvim", + opts = { + excluded_filetypes = { "neo-tree", "alpha", "symbols-outline" }, + }, + event = "BufRead", + }, +} diff --git a/.config/nvim/lua/plugins/satellite.lua b/.config/nvim/lua/plugins/satellite.lua deleted file mode 100644 index cbe4a147..00000000 --- a/.config/nvim/lua/plugins/satellite.lua +++ /dev/null @@ -1,64 +0,0 @@ -return { - { - "lewis6991/satellite.nvim", - event = "BufRead", - enabled = false, - opts = { - current_only = true, - winblend = 50, - zindex = 40, - excluded_filetypes = {}, - width = 2, - handlers = { - cursor = { - enable = true, - -- Supports any number of symbols - symbols = { "⎺", "⎻", "⎼", "⎽" }, - -- symbols = { '⎻', '⎼' } - -- Highlights: - -- - SatelliteCursor (default links to NonText - }, - search = { - enable = true, - -- Highlights: - -- - SatelliteSearch (default links to Search) - -- - SatelliteSearchCurrent (default links to SearchCurrent) - }, - diagnostic = { - enable = true, - signs = { "-", "=", "≡" }, - min_severity = vim.diagnostic.severity.HINT, - -- Highlights: - -- - SatelliteDiagnosticError (default links to DiagnosticError) - -- - SatelliteDiagnosticWarn (default links to DiagnosticWarn) - -- - SatelliteDiagnosticInfo (default links to DiagnosticInfo) - -- - SatelliteDiagnosticHint (default links to DiagnosticHint) - }, - gitsigns = { - enable = true, - signs = { -- can only be a single character (multibyte is okay) - add = "│", - change = "│", - delete = "-", - }, - -- Highlights: - -- SatelliteGitSignsAdd (default links to GitSignsAdd) - -- SatelliteGitSignsChange (default links to GitSignsChange) - -- SatelliteGitSignsDelete (default links to GitSignsDelete) - }, - marks = { - enable = true, - show_builtins = false, -- shows the builtin marks like [ ] < > - key = "m", - -- Highlights: - -- SatelliteMark (default links to Normal) - }, - quickfix = { - signs = { "-", "=", "≡" }, - -- Highlights: - -- SatelliteQuickfix (default links to WarningMsg) - }, - }, - }, - }, -} diff --git a/.config/nvim/lua/plugins/scrollbar.lua b/.config/nvim/lua/plugins/scrollbar.lua deleted file mode 100644 index c76923bf..00000000 --- a/.config/nvim/lua/plugins/scrollbar.lua +++ /dev/null @@ -1,19 +0,0 @@ -return { - { - "dstein64/nvim-scrollview", - event = "BufReadPost", - enabled = false, - keys = { { "uS", "ScrollViewToggle", desc = "Toggle Scrollview" } }, - config = function() - require("scrollview").setup({ - excluded_filetypes = { "neo-tree", "alpha", "symbols-outline" }, - signs_column = 0, - winblend = 25, - diagnostics_error_symbol = "", - diagnostics_warn_symbol = "", - diagnostics_info_symbol = "", - diagnostics_hint_symbol = "", - }) - end, - }, -}