diff --git a/nix/neovim-overlay.nix b/nix/neovim-overlay.nix index ce7c438..ce0dcce 100644 --- a/nix/neovim-overlay.nix +++ b/nix/neovim-overlay.nix @@ -22,9 +22,11 @@ with final.pkgs.lib; let # ... # } all-plugins = with pkgs.vimPlugins; [ + # Debugger/task runner nvim-dap # Debuggerhttps://github.com/mfussenegger/nvim-dap nvim-dap-ui # Debugger UI https://github.com/rcarriga/nvim-dap-ui/ overseer-nvim # A task runner and job management plugin for Neovim | https://github.com/stevearc/overseer.nvim + # ^ Debugger/task runner # Themes tokyonight-nvim # https://github.com/folke/tokyonight.nvim @@ -89,6 +91,7 @@ with final.pkgs.lib; let comment-nvim # https://github.com/numToStr/Comment.nvim neo-tree-nvim # https://github.com/numToStr/Comment.nvim aerial-nvim # Plugin for a code outline window | https://github.com/stevearc/aerial.nvim + is-vim # incremental search improved | https://github.com/haya14busa/is.vim # ^ navigation/editing enhancement plugins # Useful utilities diff --git a/nvim/plugin/lualine.lua b/nvim/plugin/lualine.lua index e005722..c2b1866 100644 --- a/nvim/plugin/lualine.lua +++ b/nvim/plugin/lualine.lua @@ -124,8 +124,8 @@ require('lualine').setup { -- newfile_status = true, -- }, -- }, - lualine_y = {'searchcount','selectioncount'}, - lualine_z = {'location'}, + lualine_y = {'location'}, + lualine_z = {'searchcount','selectioncount'}, }, extensions = { 'fugitive', 'fzf', 'toggleterm', 'quickfix' }, }