Merge branch 'master' into master
This commit is contained in:
		
						commit
						cee19ee608
					
				|  | @ -9,6 +9,13 @@ assignees: '' | ||||||
| 
 | 
 | ||||||
| <!-- Any bug report not following this template will be immediately closed. Thanks --> | <!-- Any bug report not following this template will be immediately closed. Thanks --> | ||||||
| 
 | 
 | ||||||
|  | ## Before Reporting an Issue | ||||||
|  | - I have read the kickstart.nvim README.md. | ||||||
|  | - I have read the appropriate plugin's documentation. | ||||||
|  | - I have searched that this issue has not been reported before. | ||||||
|  | 
 | ||||||
|  | - [ ] **By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.** | ||||||
|  | 
 | ||||||
| ## Describe the bug | ## Describe the bug | ||||||
| <!-- A clear and concise description of what the bug is. --> | <!-- A clear and concise description of what the bug is. --> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
							
								
								
									
										59
									
								
								README.md
								
								
								
								
							
							
						
						
									
										59
									
								
								README.md
								
								
								
								
							|  | @ -23,22 +23,24 @@ If you are experiencing issues, please make sure you have the latest versions. | ||||||
| 
 | 
 | ||||||
| External Requirements: | External Requirements: | ||||||
| - Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`) | - Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`) | ||||||
| - [ripgrep](https://github.com/BurntSushi/ripgrep#installation) | - [ripgrep](https://github.com/BurntSushi/ripgrep#installation), | ||||||
| - Clipboard tool (xclip/xsel/win32yank or other depending on platform) |   [fd-find](https://github.com/sharkdp/fd#installation) | ||||||
|  | - Clipboard tool (xclip/xsel/win32yank or other depending on the platform) | ||||||
| - A [Nerd Font](https://www.nerdfonts.com/): optional, provides various icons | - A [Nerd Font](https://www.nerdfonts.com/): optional, provides various icons | ||||||
|   - if you have it set `vim.g.have_nerd_font` in `init.lua` to true |   - if you have it set `vim.g.have_nerd_font` in `init.lua` to true | ||||||
|  | - Emoji fonts (Ubuntu only, and only if you want emoji!) `sudo apt install fonts-noto-color-emoji` | ||||||
| - Language Setup: | - Language Setup: | ||||||
|   - If want to write Typescript, you need `npm` |   - If you want to write Typescript, you need `npm` | ||||||
|   - If want to write Golang, you will need `go` |   - If you want to write Golang, you will need `go` | ||||||
|   - etc. |   - etc. | ||||||
| 
 | 
 | ||||||
| > **NOTE** | > [!NOTE] | ||||||
| > See [Install Recipes](#Install-Recipes) for additional Windows and Linux specific notes | > See [Install Recipes](#Install-Recipes) for additional Windows and Linux specific notes | ||||||
| > and quick install snippets | > and quick install snippets | ||||||
| 
 | 
 | ||||||
| ### Install Kickstart | ### Install Kickstart | ||||||
| 
 | 
 | ||||||
| > **NOTE** | > [!NOTE] | ||||||
| > [Backup](#FAQ) your previous configuration (if any exists) | > [Backup](#FAQ) your previous configuration (if any exists) | ||||||
| 
 | 
 | ||||||
| Neovim's configurations are located under the following paths, depending on your OS: | Neovim's configurations are located under the following paths, depending on your OS: | ||||||
|  | @ -46,8 +48,8 @@ Neovim's configurations are located under the following paths, depending on your | ||||||
| | OS | PATH | | | OS | PATH | | ||||||
| | :- | :--- | | | :- | :--- | | ||||||
| | Linux, MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` | | | Linux, MacOS | `$XDG_CONFIG_HOME/nvim`, `~/.config/nvim` | | ||||||
| | Windows (cmd)| `%userprofile%\AppData\Local\nvim\` | | | Windows (cmd)| `%localappdata%\nvim\` | | ||||||
| | Windows (powershell)| `$env:USERPROFILE\AppData\Local\nvim\` | | | Windows (powershell)| `$env:LOCALAPPDATA\nvim\` | | ||||||
| 
 | 
 | ||||||
| #### Recommended Step | #### Recommended Step | ||||||
| 
 | 
 | ||||||
|  | @ -55,12 +57,17 @@ Neovim's configurations are located under the following paths, depending on your | ||||||
| so that you have your own copy that you can modify, then install by cloning the | so that you have your own copy that you can modify, then install by cloning the | ||||||
| fork to your machine using one of the commands below, depending on your OS. | fork to your machine using one of the commands below, depending on your OS. | ||||||
| 
 | 
 | ||||||
| > **NOTE** | > [!NOTE] | ||||||
| > Your fork's url will be something like this: | > Your fork's URL will be something like this: | ||||||
| > `https://github.com/<your_github_username>/kickstart.nvim.git` | > `https://github.com/<your_github_username>/kickstart.nvim.git` | ||||||
| 
 | 
 | ||||||
|  | You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file | ||||||
|  | too - it's ignored in the kickstart repo to make maintenance easier, but it's | ||||||
|  | [recommended to track it in version control](https://lazy.folke.io/usage/lockfile). | ||||||
|  | 
 | ||||||
| #### Clone kickstart.nvim | #### Clone kickstart.nvim | ||||||
| > **NOTE** | 
 | ||||||
|  | > [!NOTE] | ||||||
| > If following the recommended step above (i.e., forking the repo), replace | > If following the recommended step above (i.e., forking the repo), replace | ||||||
| > `nvim-lua` with `<your_github_username>` in the commands below | > `nvim-lua` with `<your_github_username>` in the commands below | ||||||
| 
 | 
 | ||||||
|  | @ -78,12 +85,15 @@ If you're using `cmd.exe`: | ||||||
| 
 | 
 | ||||||
| ``` | ``` | ||||||
| git clone https://github.com/cmmadnat/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ | git clone https://github.com/cmmadnat/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ | ||||||
|  | 
 | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| If you're using `powershell.exe` | If you're using `powershell.exe` | ||||||
| 
 | 
 | ||||||
| ``` | ``` | ||||||
|  | 
 | ||||||
| git clone https://github.com/cmmadnat/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ | git clone https://github.com/cmmadnat/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ | ||||||
|  | 
 | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| </details> | </details> | ||||||
|  | @ -97,12 +107,17 @@ nvim | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| That's it! Lazy will install all the plugins you have. Use `:Lazy` to view | That's it! Lazy will install all the plugins you have. Use `:Lazy` to view | ||||||
| current plugin status. Hit `q` to close the window. | the current plugin status. Hit `q` to close the window. | ||||||
|  | 
 | ||||||
|  | #### Read The Friendly Documentation | ||||||
| 
 | 
 | ||||||
| Read through the `init.lua` file in your configuration folder for more | Read through the `init.lua` file in your configuration folder for more | ||||||
| information about extending and exploring Neovim. That also includes | information about extending and exploring Neovim. That also includes | ||||||
| examples of adding popularly requested plugins. | examples of adding popularly requested plugins. | ||||||
| 
 | 
 | ||||||
|  | > [!NOTE] | ||||||
|  | > For more information about a particular plugin check its repository's documentation. | ||||||
|  | 
 | ||||||
| 
 | 
 | ||||||
| ### Getting Started | ### Getting Started | ||||||
| 
 | 
 | ||||||
|  | @ -110,9 +125,9 @@ examples of adding popularly requested plugins. | ||||||
| 
 | 
 | ||||||
| ### FAQ | ### FAQ | ||||||
| 
 | 
 | ||||||
| * What should I do if I already have a pre-existing neovim configuration? | * What should I do if I already have a pre-existing Neovim configuration? | ||||||
|   * You should back it up and then delete all associated files. |   * You should back it up and then delete all associated files. | ||||||
|   * This includes your existing init.lua and the neovim files in `~/.local` |   * This includes your existing init.lua and the Neovim files in `~/.local` | ||||||
|     which can be deleted with `rm -rf ~/.local/share/nvim/` |     which can be deleted with `rm -rf ~/.local/share/nvim/` | ||||||
| * Can I keep my existing configuration in parallel to kickstart? | * Can I keep my existing configuration in parallel to kickstart? | ||||||
|   * Yes! You can use [NVIM_APPNAME](https://neovim.io/doc/user/starting.html#%24NVIM_APPNAME)`=nvim-NAME` |   * Yes! You can use [NVIM_APPNAME](https://neovim.io/doc/user/starting.html#%24NVIM_APPNAME)`=nvim-NAME` | ||||||
|  | @ -126,7 +141,7 @@ examples of adding popularly requested plugins. | ||||||
|     `~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim |     `~/.local/share/nvim-kickstart`. You can apply this approach to any Neovim | ||||||
|     distribution that you would like to try out. |     distribution that you would like to try out. | ||||||
| * What if I want to "uninstall" this configuration: | * What if I want to "uninstall" this configuration: | ||||||
|   * See [lazy.nvim uninstall](https://github.com/folke/lazy.nvim#-uninstalling) information |   * See [lazy.nvim uninstall](https://lazy.folke.io/usage#-uninstalling) information | ||||||
| * Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files? | * Why is the kickstart `init.lua` a single file? Wouldn't it make sense to split it into multiple files? | ||||||
|   * The main purpose of kickstart is to serve as a teaching tool and a reference |   * The main purpose of kickstart is to serve as a teaching tool and a reference | ||||||
|     configuration that someone can easily use to `git clone` as a basis for their own. |     configuration that someone can easily use to `git clone` as a basis for their own. | ||||||
|  | @ -170,7 +185,7 @@ run in cmd as **admin**: | ||||||
| winget install --accept-source-agreements chocolatey.chocolatey | winget install --accept-source-agreements chocolatey.chocolatey | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| 2. install all requirements using choco, exit previous cmd and | 2. install all requirements using choco, exit the previous cmd and | ||||||
| open a new one so that choco path is set, and run in cmd as **admin**: | open a new one so that choco path is set, and run in cmd as **admin**: | ||||||
| ``` | ``` | ||||||
| choco install -y neovim git ripgrep wget fd unzip gzip mingw make | choco install -y neovim git ripgrep wget fd unzip gzip mingw make | ||||||
|  | @ -203,14 +218,14 @@ sudo apt update | ||||||
| sudo apt install make gcc ripgrep unzip git xclip curl | sudo apt install make gcc ripgrep unzip git xclip curl | ||||||
| 
 | 
 | ||||||
| # Now we install nvim | # Now we install nvim | ||||||
| curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz | curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz | ||||||
| sudo rm -rf /opt/nvim-linux64 | sudo rm -rf /opt/nvim-linux-x86_64 | ||||||
| sudo mkdir -p /opt/nvim-linux64 | sudo mkdir -p /opt/nvim-linux-x86_64 | ||||||
| sudo chmod a+rX /opt/nvim-linux64 | sudo chmod a+rX /opt/nvim-linux-x86_64 | ||||||
| sudo tar -C /opt -xzf nvim-linux64.tar.gz | sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz | ||||||
| 
 | 
 | ||||||
| # make it available in /usr/local/bin, distro installs to /usr/bin | # make it available in /usr/local/bin, distro installs to /usr/bin | ||||||
| sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/ | sudo ln -sf /opt/nvim-linux-x86_64/bin/nvim /usr/local/bin/ | ||||||
| ``` | ``` | ||||||
| </details> | </details> | ||||||
| <details><summary>Fedora Install Steps</summary> | <details><summary>Fedora Install Steps</summary> | ||||||
|  |  | ||||||
							
								
								
									
										532
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										532
									
								
								init.lua
								
								
								
								
							|  | @ -8,76 +8,86 @@ vim.g.maplocalleader = ' ' | ||||||
| vim.g.have_nerd_font = true | vim.g.have_nerd_font = true | ||||||
| 
 | 
 | ||||||
| -- [[ Setting options ]] | -- [[ Setting options ]] | ||||||
| -- See `:help vim.opt` | -- See `:help vim.o` | ||||||
| -- NOTE: You can change these options as you wish! | -- NOTE: You can change these options as you wish! | ||||||
| --  For more options, you can see `:help option-list` | --  For more options, you can see `:help option-list` | ||||||
| -- Make line numbers default | -- Make line numbers default | ||||||
| vim.opt.number = true | vim.o.number = true | ||||||
| -- You can also add relative line numbers, to help with jumping. | -- You can also add relative line numbers, to help with jumping. | ||||||
| --  Experiment for yourself to see if you like it! | --  Experiment for yourself to see if you like it! | ||||||
| vim.opt.relativenumber = true | vim.opt.relativenumber = true | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
| -- Enable mouse mode, can be useful for resizing splits for example! | -- Enable mouse mode, can be useful for resizing splits for example! | ||||||
| vim.opt.mouse = 'a' | vim.o.mouse = 'a' | ||||||
| 
 | 
 | ||||||
| -- Don't show the mode, since it's already in the status line | -- Don't show the mode, since it's already in the status line | ||||||
| vim.opt.showmode = false | vim.o.showmode = false | ||||||
| 
 | 
 | ||||||
| -- Sync clipboard between OS and Neovim. | -- Sync clipboard between OS and Neovim. | ||||||
|  | --  Schedule the setting after `UiEnter` because it can increase startup-time. | ||||||
| --  Remove this option if you want your OS clipboard to remain independent. | --  Remove this option if you want your OS clipboard to remain independent. | ||||||
| --  See `:help 'clipboard'` | --  See `:help 'clipboard'` | ||||||
| vim.opt.clipboard = 'unnamedplus' | vim.schedule(function() | ||||||
|  |   vim.o.clipboard = 'unnamedplus' | ||||||
|  | end) | ||||||
| 
 | 
 | ||||||
| -- Enable break indent | -- Enable break indent | ||||||
| vim.opt.breakindent = true | vim.o.breakindent = true | ||||||
| 
 | 
 | ||||||
| -- Save undo history | -- Save undo history | ||||||
| vim.opt.undofile = true | vim.o.undofile = true | ||||||
| 
 | 
 | ||||||
| -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term | -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term | ||||||
| vim.opt.ignorecase = true | vim.o.ignorecase = true | ||||||
| vim.opt.smartcase = true | vim.o.smartcase = true | ||||||
| 
 | 
 | ||||||
| -- Keep signcolumn on by default | -- Keep signcolumn on by default | ||||||
| vim.opt.signcolumn = 'yes' | vim.o.signcolumn = 'yes' | ||||||
| 
 | 
 | ||||||
| -- Decrease update time | -- Decrease update time | ||||||
| vim.opt.updatetime = 250 | vim.o.updatetime = 250 | ||||||
| 
 | 
 | ||||||
| -- Decrease mapped sequence wait time | -- Decrease mapped sequence wait time | ||||||
| -- Displays which-key popup sooner | vim.o.timeoutlen = 300 | ||||||
| vim.opt.timeoutlen = 300 |  | ||||||
| 
 | 
 | ||||||
| -- Configure how new splits should be opened | -- Configure how new splits should be opened | ||||||
| vim.opt.splitright = true | vim.o.splitright = true | ||||||
| vim.opt.splitbelow = true | vim.o.splitbelow = true | ||||||
| 
 | 
 | ||||||
| -- Sets how neovim will display certain whitespace characters in the editor. | -- Sets how neovim will display certain whitespace characters in the editor. | ||||||
| --  See `:help 'list'` | --  See `:help 'list'` | ||||||
| --  and `:help 'listchars'` | --  and `:help 'listchars'` | ||||||
| vim.opt.list = true | -- | ||||||
|  | --  Notice listchars is set using `vim.opt` instead of `vim.o`. | ||||||
|  | --  It is very similar to `vim.o` but offers an interface for conveniently interacting with tables. | ||||||
|  | --   See `:help lua-options` | ||||||
|  | --   and `:help lua-options-guide` | ||||||
|  | vim.o.list = true | ||||||
| vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } | vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } | ||||||
| 
 | 
 | ||||||
| -- Preview substitutions live, as you type! | -- Preview substitutions live, as you type! | ||||||
| vim.opt.inccommand = 'split' | vim.o.inccommand = 'split' | ||||||
| 
 | 
 | ||||||
| -- Show which line your cursor is on | -- Show which line your cursor is on | ||||||
| vim.opt.cursorline = true | vim.o.cursorline = true | ||||||
| 
 | 
 | ||||||
| -- Minimal number of screen lines to keep above and below the cursor. | -- Minimal number of screen lines to keep above and below the cursor. | ||||||
| vim.opt.scrolloff = 10 | vim.o.scrolloff = 10 | ||||||
|  | 
 | ||||||
|  | -- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`), | ||||||
|  | -- instead raise a dialog asking if you wish to save the current file(s) | ||||||
|  | -- See `:help 'confirm'` | ||||||
|  | vim.o.confirm = true | ||||||
| 
 | 
 | ||||||
| -- [[ Basic Keymaps ]] | -- [[ Basic Keymaps ]] | ||||||
| --  See `:help vim.keymap.set()` | --  See `:help vim.keymap.set()` | ||||||
| 
 | 
 | ||||||
| -- Set highlight on search, but clear on pressing <Esc> in normal mode | -- Clear highlights on search when pressing <Esc> in normal mode | ||||||
| vim.opt.hlsearch = true | --  See `:help hlsearch` | ||||||
| vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>') | vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>') | ||||||
| 
 | 
 | ||||||
| -- Diagnostic keymaps | -- Diagnostic keymaps | ||||||
| vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' }) |  | ||||||
| vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagnostic message' }) |  | ||||||
| vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Show diagnostic [E]rror messages' }) |  | ||||||
| vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) | vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) | ||||||
| 
 | 
 | ||||||
| -- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier | -- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier | ||||||
|  | @ -103,28 +113,40 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win | ||||||
| vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' }) | vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' }) | ||||||
| vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' }) | vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' }) | ||||||
| 
 | 
 | ||||||
|  | -- NOTE: Some terminals have colliding keymaps or are not able to send distinct keycodes | ||||||
|  | -- vim.keymap.set("n", "<C-S-h>", "<C-w>H", { desc = "Move window to the left" }) | ||||||
|  | -- vim.keymap.set("n", "<C-S-l>", "<C-w>L", { desc = "Move window to the right" }) | ||||||
|  | -- vim.keymap.set("n", "<C-S-j>", "<C-w>J", { desc = "Move window to the lower" }) | ||||||
|  | -- vim.keymap.set("n", "<C-S-k>", "<C-w>K", { desc = "Move window to the upper" }) | ||||||
|  | 
 | ||||||
| -- [[ Basic Autocommands ]] | -- [[ Basic Autocommands ]] | ||||||
| --  See `:help lua-guide-autocommands` | --  See `:help lua-guide-autocommands` | ||||||
| 
 | 
 | ||||||
| -- Highlight when yanking (copying) text | -- Highlight when yanking (copying) text | ||||||
| --  Try it with `yap` in normal mode | --  Try it with `yap` in normal mode | ||||||
| --  See `:help vim.highlight.on_yank()` | --  See `:help vim.hl.on_yank()` | ||||||
| vim.api.nvim_create_autocmd('TextYankPost', { | vim.api.nvim_create_autocmd('TextYankPost', { | ||||||
|   desc = 'Highlight when yanking (copying) text', |   desc = 'Highlight when yanking (copying) text', | ||||||
|   group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), |   group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), | ||||||
|   callback = function() |   callback = function() | ||||||
|     vim.highlight.on_yank() |     vim.hl.on_yank() | ||||||
|   end, |   end, | ||||||
| }) | }) | ||||||
| 
 | 
 | ||||||
| -- [[ Install `lazy.nvim` plugin manager ]] | -- [[ Install `lazy.nvim` plugin manager ]] | ||||||
| --    See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info | --    See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info | ||||||
| local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' | local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' | ||||||
| if not vim.loop.fs_stat(lazypath) then | if not (vim.uv or vim.loop).fs_stat(lazypath) then | ||||||
|   local lazyrepo = 'https://github.com/folke/lazy.nvim.git' |   local lazyrepo = 'https://github.com/folke/lazy.nvim.git' | ||||||
|   vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } |   local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } | ||||||
| end ---@diagnostic disable-next-line: undefined-field |   if vim.v.shell_error ~= 0 then | ||||||
| vim.opt.rtp:prepend(lazypath) |     error('Error cloning lazy.nvim:\n' .. out) | ||||||
|  |   end | ||||||
|  | end | ||||||
|  | 
 | ||||||
|  | ---@type vim.Option | ||||||
|  | local rtp = vim.opt.rtp | ||||||
|  | rtp:prepend(lazypath) | ||||||
| 
 | 
 | ||||||
| -- [[ Configure and install plugins ]] | -- [[ Configure and install plugins ]] | ||||||
| -- | -- | ||||||
|  | @ -176,23 +198,28 @@ require('lazy').setup({ | ||||||
|   }, |   }, | ||||||
|   'tpope/vim-fugitive', |   'tpope/vim-fugitive', | ||||||
|   -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). |   -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). | ||||||
|   'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically |   'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically | ||||||
| 
 | 
 | ||||||
|   -- NOTE: Plugins can also be added by using a table, |   -- NOTE: Plugins can also be added by using a table, | ||||||
|   -- with the first argument being the link and the following |   -- with the first argument being the link and the following | ||||||
|   -- keys can be used to configure plugin behavior/loading/etc. |   -- keys can be used to configure plugin behavior/loading/etc. | ||||||
|   -- |   -- | ||||||
|   -- Use `opts = {}` to force a plugin to be loaded. |   -- Use `opts = {}` to automatically pass options to a plugin's `setup()` function, forcing the plugin to be loaded. | ||||||
|   -- |   -- | ||||||
|   --  This is equivalent to: |  | ||||||
|   --    require('Comment').setup({}) |  | ||||||
| 
 |  | ||||||
|   -- "gc" to comment visual regions/lines |  | ||||||
|   { 'numToStr/Comment.nvim', opts = {} }, |  | ||||||
| 
 | 
 | ||||||
|  |   -- Alternatively, use `config = function() ... end` for full control over the configuration. | ||||||
|  |   -- If you prefer to call `setup` explicitly, use: | ||||||
|  |   --    { | ||||||
|  |   --        'lewis6991/gitsigns.nvim', | ||||||
|  |   --        config = function() | ||||||
|  |   --            require('gitsigns').setup({ | ||||||
|  |   --                -- Your gitsigns configuration here | ||||||
|  |   --            }) | ||||||
|  |   --        end, | ||||||
|  |   --    } | ||||||
|  |   -- | ||||||
|   -- Here is a more advanced example where we pass configuration |   -- Here is a more advanced example where we pass configuration | ||||||
|   -- options to `gitsigns.nvim`. This is equivalent to the following Lua: |   -- options to `gitsigns.nvim`. | ||||||
|   --    require('gitsigns').setup({ ... }) |  | ||||||
|   -- |   -- | ||||||
|   -- See `:help gitsigns` to understand what the configuration keys do |   -- See `:help gitsigns` to understand what the configuration keys do | ||||||
|   { -- Adds git related signs to the gutter, as well as utilities for managing changes |   { -- Adds git related signs to the gutter, as well as utilities for managing changes | ||||||
|  | @ -220,37 +247,61 @@ require('lazy').setup({ | ||||||
|   -- which loads which-key before all the UI elements are loaded. Events can be |   -- which loads which-key before all the UI elements are loaded. Events can be | ||||||
|   -- normal autocommands events (`:help autocmd-events`). |   -- normal autocommands events (`:help autocmd-events`). | ||||||
|   -- |   -- | ||||||
|   -- Then, because we use the `config` key, the configuration only runs |   -- Then, because we use the `opts` key (recommended), the configuration runs | ||||||
|   -- after the plugin has been loaded: |   -- after the plugin has been loaded as `require(MODULE).setup(opts)`. | ||||||
|   --  config = function() ... end |  | ||||||
| 
 | 
 | ||||||
|   { -- Useful plugin to show you pending keybinds. |   { -- Useful plugin to show you pending keybinds. | ||||||
|     'folke/which-key.nvim', |     'folke/which-key.nvim', | ||||||
|     event = 'VimEnter', -- Sets the loading event to 'VimEnter' |     event = 'VimEnter', -- Sets the loading event to 'VimEnter' | ||||||
|     config = function() -- This is the function that runs, AFTER loading |     opts = { | ||||||
|       require('which-key').setup() |       -- delay between pressing a key and opening which-key (milliseconds) | ||||||
|  |       -- this setting is independent of vim.o.timeoutlen | ||||||
|  |       delay = 0, | ||||||
|  |       icons = { | ||||||
|  |         -- set icon mappings to true if you have a Nerd Font | ||||||
|  |         mappings = vim.g.have_nerd_font, | ||||||
|  |         -- If you are using a Nerd Font: set icons.keys to an empty table which will use the | ||||||
|  |         -- default which-key.nvim defined Nerd Font icons, otherwise define a string table | ||||||
|  |         keys = vim.g.have_nerd_font and {} or { | ||||||
|  |           Up = '<Up> ', | ||||||
|  |           Down = '<Down> ', | ||||||
|  |           Left = '<Left> ', | ||||||
|  |           Right = '<Right> ', | ||||||
|  |           C = '<C-…> ', | ||||||
|  |           M = '<M-…> ', | ||||||
|  |           D = '<D-…> ', | ||||||
|  |           S = '<S-…> ', | ||||||
|  |           CR = '<CR> ', | ||||||
|  |           Esc = '<Esc> ', | ||||||
|  |           ScrollWheelDown = '<ScrollWheelDown> ', | ||||||
|  |           ScrollWheelUp = '<ScrollWheelUp> ', | ||||||
|  |           NL = '<NL> ', | ||||||
|  |           BS = '<BS> ', | ||||||
|  |           Space = '<Space> ', | ||||||
|  |           Tab = '<Tab> ', | ||||||
|  |           F1 = '<F1>', | ||||||
|  |           F2 = '<F2>', | ||||||
|  |           F3 = '<F3>', | ||||||
|  |           F4 = '<F4>', | ||||||
|  |           F5 = '<F5>', | ||||||
|  |           F6 = '<F6>', | ||||||
|  |           F7 = '<F7>', | ||||||
|  |           F8 = '<F8>', | ||||||
|  |           F9 = '<F9>', | ||||||
|  |           F10 = '<F10>', | ||||||
|  |           F11 = '<F11>', | ||||||
|  |           F12 = '<F12>', | ||||||
|  |         }, | ||||||
|  |       }, | ||||||
| 
 | 
 | ||||||
|       require('which-key').add { | 
 | ||||||
|         { '<leader>c', group = '[C]ode' }, |       -- Document existing key chains | ||||||
|         { '<leader>c_', hidden = true }, |       spec = { | ||||||
|         { '<leader>d', group = '[D]ocument' }, |  | ||||||
|         { '<leader>d_', hidden = true }, |  | ||||||
|         { '<leader>h', group = 'Git [H]unk' }, |  | ||||||
|         { '<leader>h_', hidden = true }, |  | ||||||
|         { '<leader>r', group = '[R]ename' }, |  | ||||||
|         { '<leader>r_', hidden = true }, |  | ||||||
|         { '<leader>s', group = '[S]earch' }, |         { '<leader>s', group = '[S]earch' }, | ||||||
|         { '<leader>s_', hidden = true }, |  | ||||||
|         { '<leader>t', group = '[T]oggle' }, |         { '<leader>t', group = '[T]oggle' }, | ||||||
|         { '<leader>t_', hidden = true }, |         { '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } }, | ||||||
|         { '<leader>w', group = '[W]orkspace' }, |       }, | ||||||
|         { '<leader>w_', hidden = true }, |     }, | ||||||
|       } |  | ||||||
| 
 |  | ||||||
|       require('which-key').add { |  | ||||||
|         { '<leader>h', group = 'Git [H]unk', mode = 'v' }, |  | ||||||
|       } |  | ||||||
|     end, |  | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   -- NOTE: Plugins can specify dependencies. |   -- NOTE: Plugins can specify dependencies. | ||||||
|  | @ -263,7 +314,6 @@ require('lazy').setup({ | ||||||
|   { -- Fuzzy Finder (files, lsp, etc) |   { -- Fuzzy Finder (files, lsp, etc) | ||||||
|     'nvim-telescope/telescope.nvim', |     'nvim-telescope/telescope.nvim', | ||||||
|     event = 'VimEnter', |     event = 'VimEnter', | ||||||
|     branch = '0.1.x', |  | ||||||
|     dependencies = { |     dependencies = { | ||||||
|       'nvim-lua/plenary.nvim', |       'nvim-lua/plenary.nvim', | ||||||
|       { -- If encountering errors, see telescope-fzf-native README for installation instructions |       { -- If encountering errors, see telescope-fzf-native README for installation instructions | ||||||
|  | @ -369,21 +419,35 @@ require('lazy').setup({ | ||||||
|     end, |     end, | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   { -- LSP Configuration & Plugins |   -- LSP Plugins | ||||||
|  |   { | ||||||
|  |     -- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins | ||||||
|  |     -- used for completion, annotations and signatures of Neovim apis | ||||||
|  |     'folke/lazydev.nvim', | ||||||
|  |     ft = 'lua', | ||||||
|  |     opts = { | ||||||
|  |       library = { | ||||||
|  |         -- Load luvit types when the `vim.uv` word is found | ||||||
|  |         { path = '${3rd}/luv/library', words = { 'vim%.uv' } }, | ||||||
|  |       }, | ||||||
|  |     }, | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     -- Main LSP Configuration | ||||||
|     'neovim/nvim-lspconfig', |     'neovim/nvim-lspconfig', | ||||||
|     dependencies = { |     dependencies = { | ||||||
|       -- Automatically install LSPs and related tools to stdpath for Neovim |       -- Automatically install LSPs and related tools to stdpath for Neovim | ||||||
|       { 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants |       -- Mason must be loaded before its dependents so we need to set it up here. | ||||||
|       'williamboman/mason-lspconfig.nvim', |       -- NOTE: `opts = {}` is the same as calling `require('mason').setup({})` | ||||||
|  |       { 'mason-org/mason.nvim', opts = {} }, | ||||||
|  |       'mason-org/mason-lspconfig.nvim', | ||||||
|       'WhoIsSethDaniel/mason-tool-installer.nvim', |       'WhoIsSethDaniel/mason-tool-installer.nvim', | ||||||
| 
 | 
 | ||||||
|       -- Useful status updates for LSP. |       -- Useful status updates for LSP. | ||||||
|       -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` |  | ||||||
|       { 'j-hui/fidget.nvim', opts = {} }, |       { 'j-hui/fidget.nvim', opts = {} }, | ||||||
| 
 | 
 | ||||||
|       -- `neodev` configures Lua LSP for your Neovim config, runtime and plugins |       -- Allows extra capabilities provided by blink.cmp | ||||||
|       -- used for completion, annotations and signatures of Neovim apis |       'saghen/blink.cmp', | ||||||
|       { 'folke/neodev.nvim', opts = {} }, |  | ||||||
|     }, |     }, | ||||||
|     config = function() |     config = function() | ||||||
|       -- Brief aside: **What is LSP?** |       -- Brief aside: **What is LSP?** | ||||||
|  | @ -423,50 +487,60 @@ require('lazy').setup({ | ||||||
|           -- |           -- | ||||||
|           -- In this case, we create a function that lets us more easily define mappings specific |           -- In this case, we create a function that lets us more easily define mappings specific | ||||||
|           -- for LSP related items. It sets the mode, buffer and description for us each time. |           -- for LSP related items. It sets the mode, buffer and description for us each time. | ||||||
|           local map = function(keys, func, desc) |           local map = function(keys, func, desc, mode) | ||||||
|             vim.keymap.set('n', keys, func, { buffer = event.buf, desc = 'LSP: ' .. desc }) |             mode = mode or 'n' | ||||||
|  |             vim.keymap.set(mode, keys, func, { buffer = event.buf, desc = 'LSP: ' .. desc }) | ||||||
|           end |           end | ||||||
| 
 | 
 | ||||||
|  |           -- Rename the variable under your cursor. | ||||||
|  |           --  Most Language Servers support renaming across files, etc. | ||||||
|  |           map('grn', vim.lsp.buf.rename, '[R]e[n]ame') | ||||||
|  | 
 | ||||||
|  |           -- Execute a code action, usually your cursor needs to be on top of an error | ||||||
|  |           -- or a suggestion from your LSP for this to activate. | ||||||
|  |           map('gra', vim.lsp.buf.code_action, '[G]oto Code [A]ction', { 'n', 'x' }) | ||||||
|  | 
 | ||||||
|  |           -- Find references for the word under your cursor. | ||||||
|  |           map('grr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') | ||||||
|  | 
 | ||||||
|  |           -- Jump to the implementation of the word under your cursor. | ||||||
|  |           --  Useful when your language has ways of declaring types without an actual implementation. | ||||||
|  |           map('gri', require('telescope.builtin').lsp_implementations, '[G]oto [I]mplementation') | ||||||
|  | 
 | ||||||
|           -- Jump to the definition of the word under your cursor. |           -- Jump to the definition of the word under your cursor. | ||||||
|           --  This is where a variable was first declared, or where a function is defined, etc. |           --  This is where a variable was first declared, or where a function is defined, etc. | ||||||
|           --  To jump back, press <C-t>. |           --  To jump back, press <C-t>. | ||||||
|           map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition') |           map('grd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition') | ||||||
| 
 | 
 | ||||||
|           -- Find references for the word under your cursor. |           -- WARN: This is not Goto Definition, this is Goto Declaration. | ||||||
|           map('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') |           --  For example, in C this would take you to the header. | ||||||
|  |           map('grD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') | ||||||
| 
 | 
 | ||||||
|           -- Jump to the implementation of the word under your cursor. |           -- Fuzzy find all the symbols in your current document. | ||||||
|           --  Useful when your language has ways of declaring types without an actual implementation. |           --  Symbols are things like variables, functions, types, etc. | ||||||
|           map('gI', require('telescope.builtin').lsp_implementations, '[G]oto [I]mplementation') |           map('gO', require('telescope.builtin').lsp_document_symbols, 'Open Document Symbols') | ||||||
|  | 
 | ||||||
|  |           -- Fuzzy find all the symbols in your current workspace. | ||||||
|  |           --  Similar to document symbols, except searches over your entire project. | ||||||
|  |           map('gW', require('telescope.builtin').lsp_dynamic_workspace_symbols, 'Open Workspace Symbols') | ||||||
| 
 | 
 | ||||||
|           -- Jump to the type of the word under your cursor. |           -- Jump to the type of the word under your cursor. | ||||||
|           --  Useful when you're not sure what type a variable is and you want to see |           --  Useful when you're not sure what type a variable is and you want to see | ||||||
|           --  the definition of its *type*, not where it was *defined*. |           --  the definition of its *type*, not where it was *defined*. | ||||||
|           map('<leader>D', require('telescope.builtin').lsp_type_definitions, 'Type [D]efinition') |           map('grt', require('telescope.builtin').lsp_type_definitions, '[G]oto [T]ype Definition') | ||||||
| 
 | 
 | ||||||
|           -- Fuzzy find all the symbols in your current document. |           -- This function resolves a difference between neovim nightly (version 0.11) and stable (version 0.10) | ||||||
|           --  Symbols are things like variables, functions, types, etc. |           ---@param client vim.lsp.Client | ||||||
|           map('<leader>ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') |           ---@param method vim.lsp.protocol.Method | ||||||
| 
 |           ---@param bufnr? integer some lsp support methods only in specific files | ||||||
|           -- Fuzzy find all the symbols in your current workspace. |           ---@return boolean | ||||||
|           --  Similar to document symbols, except searches over your entire project. |           local function client_supports_method(client, method, bufnr) | ||||||
|           map('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') |             if vim.fn.has 'nvim-0.11' == 1 then | ||||||
| 
 |               return client:supports_method(method, bufnr) | ||||||
|           -- Rename the variable under your cursor. |             else | ||||||
|           --  Most Language Servers support renaming across files, etc. |               return client.supports_method(method, { bufnr = bufnr }) | ||||||
|           map('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame') |             end | ||||||
| 
 |           end | ||||||
|           -- Execute a code action, usually your cursor needs to be on top of an error |  | ||||||
|           -- or a suggestion from your LSP for this to activate. |  | ||||||
|           map('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction') |  | ||||||
| 
 |  | ||||||
|           -- Opens a popup that displays documentation about the word under your cursor |  | ||||||
|           --  See `:help K` for why this keymap. |  | ||||||
|           map('K', vim.lsp.buf.hover, 'Hover Documentation') |  | ||||||
| 
 |  | ||||||
|           -- WARN: This is not Goto Definition, this is Goto Declaration. |  | ||||||
|           --  For example, in C this would take you to the header. |  | ||||||
|           map('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') |  | ||||||
| 
 | 
 | ||||||
|           -- The following two autocommands are used to highlight references of the |           -- The following two autocommands are used to highlight references of the | ||||||
|           -- word under your cursor when your cursor rests there for a little while. |           -- word under your cursor when your cursor rests there for a little while. | ||||||
|  | @ -474,7 +548,7 @@ require('lazy').setup({ | ||||||
|           -- |           -- | ||||||
|           -- When you move your cursor, the highlights will be cleared (the second autocommand). |           -- When you move your cursor, the highlights will be cleared (the second autocommand). | ||||||
|           local client = vim.lsp.get_client_by_id(event.data.client_id) |           local client = vim.lsp.get_client_by_id(event.data.client_id) | ||||||
|           if client and client.server_capabilities.documentHighlightProvider then |           if client and client_supports_method(client, vim.lsp.protocol.Methods.textDocument_documentHighlight, event.buf) then | ||||||
|             local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false }) |             local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false }) | ||||||
|             vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { |             vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, { | ||||||
|               buffer = event.buf, |               buffer = event.buf, | ||||||
|  | @ -497,24 +571,54 @@ require('lazy').setup({ | ||||||
|             }) |             }) | ||||||
|           end |           end | ||||||
| 
 | 
 | ||||||
|           -- The following autocommand is used to enable inlay hints in your |           -- The following code creates a keymap to toggle inlay hints in your | ||||||
|           -- code, if the language server you are using supports them |           -- code, if the language server you are using supports them | ||||||
|           -- |           -- | ||||||
|           -- This may be unwanted, since they displace some of your code |           -- This may be unwanted, since they displace some of your code | ||||||
|           if client and client.server_capabilities.inlayHintProvider and vim.lsp.inlay_hint then |           if client and client_supports_method(client, vim.lsp.protocol.Methods.textDocument_inlayHint, event.buf) then | ||||||
|             map('<leader>th', function() |             map('<leader>th', function() | ||||||
|               vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled) | 
 | ||||||
|  |               vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled { bufnr = event.buf }) | ||||||
|  | 
 | ||||||
|             end, '[T]oggle Inlay [H]ints') |             end, '[T]oggle Inlay [H]ints') | ||||||
|           end |           end | ||||||
|         end, |         end, | ||||||
|       }) |       }) | ||||||
| 
 | 
 | ||||||
|  |       -- Diagnostic Config | ||||||
|  |       -- See :help vim.diagnostic.Opts | ||||||
|  |       vim.diagnostic.config { | ||||||
|  |         severity_sort = true, | ||||||
|  |         float = { border = 'rounded', source = 'if_many' }, | ||||||
|  |         underline = { severity = vim.diagnostic.severity.ERROR }, | ||||||
|  |         signs = vim.g.have_nerd_font and { | ||||||
|  |           text = { | ||||||
|  |             [vim.diagnostic.severity.ERROR] = ' ', | ||||||
|  |             [vim.diagnostic.severity.WARN] = ' ', | ||||||
|  |             [vim.diagnostic.severity.INFO] = ' ', | ||||||
|  |             [vim.diagnostic.severity.HINT] = ' ', | ||||||
|  |           }, | ||||||
|  |         } or {}, | ||||||
|  |         virtual_text = { | ||||||
|  |           source = 'if_many', | ||||||
|  |           spacing = 2, | ||||||
|  |           format = function(diagnostic) | ||||||
|  |             local diagnostic_message = { | ||||||
|  |               [vim.diagnostic.severity.ERROR] = diagnostic.message, | ||||||
|  |               [vim.diagnostic.severity.WARN] = diagnostic.message, | ||||||
|  |               [vim.diagnostic.severity.INFO] = diagnostic.message, | ||||||
|  |               [vim.diagnostic.severity.HINT] = diagnostic.message, | ||||||
|  |             } | ||||||
|  |             return diagnostic_message[diagnostic.severity] | ||||||
|  |           end, | ||||||
|  |         }, | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|       -- LSP servers and clients are able to communicate to each other what features they support. |       -- LSP servers and clients are able to communicate to each other what features they support. | ||||||
|       --  By default, Neovim doesn't support everything that is in the LSP specification. |       --  By default, Neovim doesn't support everything that is in the LSP specification. | ||||||
|       --  When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities. |       --  When you add blink.cmp, luasnip, etc. Neovim now has *more* capabilities. | ||||||
|       --  So, we create new capabilities with nvim cmp, and then broadcast that to the servers. |       --  So, we create new capabilities with blink.cmp, and then broadcast that to the servers. | ||||||
|       local capabilities = vim.lsp.protocol.make_client_capabilities() |       local capabilities = require('blink.cmp').get_lsp_capabilities() | ||||||
|       capabilities = vim.tbl_deep_extend('force', capabilities, require('cmp_nvim_lsp').default_capabilities()) |  | ||||||
| 
 | 
 | ||||||
|       -- Enable the following language servers |       -- Enable the following language servers | ||||||
|       --  Feel free to add/remove any LSPs that you want here. They will automatically be installed. |       --  Feel free to add/remove any LSPs that you want here. They will automatically be installed. | ||||||
|  | @ -535,8 +639,8 @@ require('lazy').setup({ | ||||||
|         -- Some languages (like typescript) have entire language plugins that can be useful: |         -- Some languages (like typescript) have entire language plugins that can be useful: | ||||||
|         --    https://github.com/pmizio/typescript-tools.nvim |         --    https://github.com/pmizio/typescript-tools.nvim | ||||||
|         -- |         -- | ||||||
|         -- But for many setups, the LSP (`tsserver`) will work just fine |         -- But for many setups, the LSP (`ts_ls`) will work just fine | ||||||
|         -- tsserver = {}, |         -- ts_ls = {}, | ||||||
|         -- |         -- | ||||||
| 
 | 
 | ||||||
|         lua_ls = { |         lua_ls = { | ||||||
|  | @ -556,13 +660,16 @@ require('lazy').setup({ | ||||||
|       } |       } | ||||||
| 
 | 
 | ||||||
|       -- Ensure the servers and tools above are installed |       -- Ensure the servers and tools above are installed | ||||||
|  |       -- | ||||||
|       -- To check the current status of installed tools and/or manually install |       -- To check the current status of installed tools and/or manually install | ||||||
|       -- other tools, you can run |       -- other tools, you can run | ||||||
|       --    :Mason |       --    :Mason | ||||||
|       -- |       -- | ||||||
|       -- You can press `g?` for help in this menu. |       -- You can press `g?` for help in this menu. | ||||||
|       require('mason').setup() |       -- | ||||||
| 
 |       -- `mason` had to be setup earlier: to configure its options see the | ||||||
|  |       -- `dependencies` table for `nvim-lspconfig` above. | ||||||
|  |       -- | ||||||
|       -- You can add other tools here that you want Mason to install |       -- You can add other tools here that you want Mason to install | ||||||
|       -- for you, so that they are available from within Neovim. |       -- for you, so that they are available from within Neovim. | ||||||
|       local ensure_installed = vim.tbl_keys(servers or {}) |       local ensure_installed = vim.tbl_keys(servers or {}) | ||||||
|  | @ -572,12 +679,14 @@ require('lazy').setup({ | ||||||
|       require('mason-tool-installer').setup { ensure_installed = ensure_installed } |       require('mason-tool-installer').setup { ensure_installed = ensure_installed } | ||||||
| 
 | 
 | ||||||
|       require('mason-lspconfig').setup { |       require('mason-lspconfig').setup { | ||||||
|  |         ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer) | ||||||
|  |         automatic_installation = false, | ||||||
|         handlers = { |         handlers = { | ||||||
|           function(server_name) |           function(server_name) | ||||||
|             local server = servers[server_name] or {} |             local server = servers[server_name] or {} | ||||||
|             -- This handles overriding only values explicitly passed |             -- This handles overriding only values explicitly passed | ||||||
|             -- by the server configuration above. Useful when disabling |             -- by the server configuration above. Useful when disabling | ||||||
|             -- certain features of an LSP (for example, turning off formatting for tsserver) |             -- certain features of an LSP (for example, turning off formatting for ts_ls) | ||||||
|             server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) |             server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) | ||||||
|             require('lspconfig')[server_name].setup(server) |             require('lspconfig')[server_name].setup(server) | ||||||
|           end, |           end, | ||||||
|  | @ -588,12 +697,13 @@ require('lazy').setup({ | ||||||
| 
 | 
 | ||||||
|   { -- Autoformat |   { -- Autoformat | ||||||
|     'stevearc/conform.nvim', |     'stevearc/conform.nvim', | ||||||
|     lazy = false, |     event = { 'BufWritePre' }, | ||||||
|  |     cmd = { 'ConformInfo' }, | ||||||
|     keys = { |     keys = { | ||||||
|       { |       { | ||||||
|         '<leader>f', |         '<leader>f', | ||||||
|         function() |         function() | ||||||
|           require('conform').format { async = true, lsp_fallback = true } |           require('conform').format { async = true, lsp_format = 'fallback' } | ||||||
|         end, |         end, | ||||||
|         mode = '', |         mode = '', | ||||||
|         desc = '[F]ormat buffer', |         desc = '[F]ormat buffer', | ||||||
|  | @ -606,30 +716,35 @@ require('lazy').setup({ | ||||||
|         -- have a well standardized coding style. You can add additional |         -- have a well standardized coding style. You can add additional | ||||||
|         -- languages here or re-enable it for the disabled ones. |         -- languages here or re-enable it for the disabled ones. | ||||||
|         local disable_filetypes = { c = true, cpp = true } |         local disable_filetypes = { c = true, cpp = true } | ||||||
|  |         if disable_filetypes[vim.bo[bufnr].filetype] then | ||||||
|  |           return nil | ||||||
|  |         else | ||||||
|           return { |           return { | ||||||
|             timeout_ms = 500, |             timeout_ms = 500, | ||||||
|           lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype], |             lsp_format = 'fallback', | ||||||
|           } |           } | ||||||
|  |         end | ||||||
|       end, |       end, | ||||||
|       formatters_by_ft = { |       formatters_by_ft = { | ||||||
|         lua = { 'stylua' }, |         lua = { 'stylua' }, | ||||||
|         -- Conform can also run multiple formatters sequentially |         -- Conform can also run multiple formatters sequentially | ||||||
|         -- python = { "isort", "black" }, |         -- python = { "isort", "black" }, | ||||||
|         -- |         -- | ||||||
|         -- You can use a sub-list to tell conform to run *until* a formatter |         -- You can use 'stop_after_first' to run the first available formatter from the list | ||||||
|         -- is found. |         -- javascript = { "prettierd", "prettier", stop_after_first = true }, | ||||||
|         -- javascript = { { "prettierd", "prettier" } }, |  | ||||||
|       }, |       }, | ||||||
|     }, |     }, | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   { -- Autocompletion |   { -- Autocompletion | ||||||
|     'hrsh7th/nvim-cmp', |     'saghen/blink.cmp', | ||||||
|     event = 'InsertEnter', |     event = 'VimEnter', | ||||||
|  |     version = '1.*', | ||||||
|     dependencies = { |     dependencies = { | ||||||
|       -- Snippet Engine & its associated nvim-cmp source |       -- Snippet Engine | ||||||
|       { |       { | ||||||
|         'L3MON4D3/LuaSnip', |         'L3MON4D3/LuaSnip', | ||||||
|  |         version = '2.*', | ||||||
|         build = (function() |         build = (function() | ||||||
|           -- Build Step is needed for regex support in snippets. |           -- Build Step is needed for regex support in snippets. | ||||||
|           -- This step is not supported in many windows environments. |           -- This step is not supported in many windows environments. | ||||||
|  | @ -650,93 +765,76 @@ require('lazy').setup({ | ||||||
|           --   end, |           --   end, | ||||||
|           -- }, |           -- }, | ||||||
|         }, |         }, | ||||||
|  |         opts = {}, | ||||||
|       }, |       }, | ||||||
|       'saadparwaiz1/cmp_luasnip', |       'folke/lazydev.nvim', | ||||||
| 
 |  | ||||||
|       -- Adds other completion capabilities. |  | ||||||
|       --  nvim-cmp does not ship with all sources by default. They are split |  | ||||||
|       --  into multiple repos for maintenance purposes. |  | ||||||
|       'hrsh7th/cmp-nvim-lsp', |  | ||||||
|       'hrsh7th/cmp-path', |  | ||||||
|     }, |     }, | ||||||
|     config = function() |     --- @module 'blink.cmp' | ||||||
|       -- See `:help cmp` |     --- @type blink.cmp.Config | ||||||
|       local cmp = require 'cmp' |     opts = { | ||||||
|       local luasnip = require 'luasnip' |       keymap = { | ||||||
|       luasnip.config.setup {} |         -- 'default' (recommended) for mappings similar to built-in completions | ||||||
| 
 |         --   <c-y> to accept ([y]es) the completion. | ||||||
|       cmp.setup { |  | ||||||
|         snippet = { |  | ||||||
|           expand = function(args) |  | ||||||
|             luasnip.lsp_expand(args.body) |  | ||||||
|           end, |  | ||||||
|         }, |  | ||||||
|         completion = { completeopt = 'menu,menuone,noinsert' }, |  | ||||||
| 
 |  | ||||||
|         -- For an understanding of why these mappings were |  | ||||||
|         -- chosen, you will need to read `:help ins-completion` |  | ||||||
|         -- |  | ||||||
|         -- No, but seriously. Please read `:help ins-completion`, it is really good! |  | ||||||
|         mapping = cmp.mapping.preset.insert { |  | ||||||
|           -- Select the [n]ext item |  | ||||||
|           ['<C-n>'] = cmp.mapping.select_next_item(), |  | ||||||
|           -- Select the [p]revious item |  | ||||||
|           ['<C-p>'] = cmp.mapping.select_prev_item(), |  | ||||||
| 
 |  | ||||||
|           -- Scroll the documentation window [b]ack / [f]orward |  | ||||||
|           ['<C-b>'] = cmp.mapping.scroll_docs(-4), |  | ||||||
|           ['<C-f>'] = cmp.mapping.scroll_docs(4), |  | ||||||
| 
 |  | ||||||
|           -- Accept ([y]es) the completion. |  | ||||||
|         --    This will auto-import if your LSP supports it. |         --    This will auto-import if your LSP supports it. | ||||||
|         --    This will expand snippets if the LSP sent a snippet. |         --    This will expand snippets if the LSP sent a snippet. | ||||||
|           ['<C-y>'] = cmp.mapping.confirm { select = true }, |         -- 'super-tab' for tab to accept | ||||||
| 
 |         -- 'enter' for enter to accept | ||||||
|           -- If you prefer more traditional completion keymaps, |         -- 'none' for no mappings | ||||||
|           -- you can uncomment the following lines |  | ||||||
|           --['<CR>'] = cmp.mapping.confirm { select = true }, |  | ||||||
|           --['<Tab>'] = cmp.mapping.select_next_item(), |  | ||||||
|           --['<S-Tab>'] = cmp.mapping.select_prev_item(), |  | ||||||
| 
 |  | ||||||
|           -- Manually trigger a completion from nvim-cmp. |  | ||||||
|           --  Generally you don't need this, because nvim-cmp will display |  | ||||||
|           --  completions whenever it has completion options available. |  | ||||||
|           ['<C-Space>'] = cmp.mapping.complete {}, |  | ||||||
| 
 |  | ||||||
|           -- Think of <c-l> as moving to the right of your snippet expansion. |  | ||||||
|           --  So if you have a snippet that's like: |  | ||||||
|           --  function $name($args) |  | ||||||
|           --    $body |  | ||||||
|           --  end |  | ||||||
|         -- |         -- | ||||||
|           -- <c-l> will move you to the right of each of the expansion locations. |         -- For an understanding of why the 'default' preset is recommended, | ||||||
|           -- <c-h> is similar, except moving you backwards. |         -- you will need to read `:help ins-completion` | ||||||
|           ['<C-l>'] = cmp.mapping(function() |         -- | ||||||
|             if luasnip.expand_or_locally_jumpable() then |         -- No, but seriously. Please read `:help ins-completion`, it is really good! | ||||||
|               luasnip.expand_or_jump() |         -- | ||||||
|             end |         -- All presets have the following mappings: | ||||||
|           end, { 'i', 's' }), |         -- <tab>/<s-tab>: move to right/left of your snippet expansion | ||||||
|           ['<C-h>'] = cmp.mapping(function() |         -- <c-space>: Open menu or open docs if already open | ||||||
|             if luasnip.locally_jumpable(-1) then |         -- <c-n>/<c-p> or <up>/<down>: Select next/previous item | ||||||
|               luasnip.jump(-1) |         -- <c-e>: Hide menu | ||||||
|             end |         -- <c-k>: Toggle signature help | ||||||
|           end, { 'i', 's' }), |         -- | ||||||
|  |         -- See :h blink-cmp-config-keymap for defining your own keymap | ||||||
|  |         preset = 'default', | ||||||
|  | 
 | ||||||
| 
 | 
 | ||||||
|         -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: |         -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: | ||||||
|         --    https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps |         --    https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps | ||||||
|       }, |       }, | ||||||
|  | 
 | ||||||
|  |       appearance = { | ||||||
|  |         -- 'mono' (default) for 'Nerd Font Mono' or 'normal' for 'Nerd Font' | ||||||
|  |         -- Adjusts spacing to ensure icons are aligned | ||||||
|  |         nerd_font_variant = 'mono', | ||||||
|  |       }, | ||||||
|  | 
 | ||||||
|  |       completion = { | ||||||
|  |         -- By default, you may press `<c-space>` to show the documentation. | ||||||
|  |         -- Optionally, set `auto_show = true` to show the documentation after a delay. | ||||||
|  |         documentation = { auto_show = false, auto_show_delay_ms = 500 }, | ||||||
|  |       }, | ||||||
|  | 
 | ||||||
|       sources = { |       sources = { | ||||||
|           { |         default = { 'lsp', 'path', 'snippets', 'lazydev' }, | ||||||
|             name = 'lazydev', |         providers = { | ||||||
|             -- set group index to 0 to skip loading LuaLS completions as lazydev recommends it |           lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 }, | ||||||
|             group_index = 0, | 
 | ||||||
|         }, |         }, | ||||||
|           { name = 'nvim_lsp' }, |  | ||||||
|           { name = 'luasnip' }, |  | ||||||
|           { name = 'path' }, |  | ||||||
|       }, |       }, | ||||||
|       } | 
 | ||||||
|     end, |       snippets = { preset = 'luasnip' }, | ||||||
|  | 
 | ||||||
|  |       -- Blink.cmp includes an optional, recommended rust fuzzy matcher, | ||||||
|  |       -- which automatically downloads a prebuilt binary when enabled. | ||||||
|  |       -- | ||||||
|  |       -- By default, we use the Lua implementation instead, but you may enable | ||||||
|  |       -- the rust implementation via `'prefer_rust_with_warning'` | ||||||
|  |       -- | ||||||
|  |       -- See :h blink-cmp-config-fuzzy for more information | ||||||
|  |       fuzzy = { implementation = 'lua' }, | ||||||
|  | 
 | ||||||
|  |       -- Shows a signature help window while you type arguments for a function | ||||||
|  |       signature = { enabled = true }, | ||||||
|  |     }, | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   { -- You can easily change to a different colorscheme. |   { -- You can easily change to a different colorscheme. | ||||||
|  | @ -746,15 +844,24 @@ require('lazy').setup({ | ||||||
|     -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. |     -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. | ||||||
|     'folke/tokyonight.nvim', |     'folke/tokyonight.nvim', | ||||||
|     priority = 1000, -- Make sure to load this before all the other start plugins. |     priority = 1000, -- Make sure to load this before all the other start plugins. | ||||||
|     init = function() |     config = function() | ||||||
|  |       ---@diagnostic disable-next-line: missing-fields | ||||||
|  |       require('tokyonight').setup { | ||||||
|  |         styles = { | ||||||
|  |           comments = { italic = false }, -- Disable italics in comments | ||||||
|  |         }, | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|       -- Load the colorscheme here. |       -- Load the colorscheme here. | ||||||
|       -- Like many other themes, this one has different styles, and you could load |       -- Like many other themes, this one has different styles, and you could load | ||||||
|       -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. |       -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. | ||||||
|  | 
 | ||||||
|       -- vim.cmd.colorscheme 'tokyonight-night' |       -- vim.cmd.colorscheme 'tokyonight-night' | ||||||
|       vim.cmd.colorscheme 'everforest' |       vim.cmd.colorscheme 'everforest' | ||||||
| 
 | 
 | ||||||
|       -- You can configure highlights by doing something like: |       -- You can configure highlights by doing something like: | ||||||
|       vim.cmd.hi 'Comment gui=none' |       vim.cmd.hi 'Comment gui=none' | ||||||
|  | 
 | ||||||
|     end, |     end, | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|  | @ -768,7 +875,7 @@ require('lazy').setup({ | ||||||
|       -- |       -- | ||||||
|       -- Examples: |       -- Examples: | ||||||
|       --  - va)  - [V]isually select [A]round [)]paren |       --  - va)  - [V]isually select [A]round [)]paren | ||||||
|       --  - yinq - [Y]ank [I]nside [N]ext [']quote |       --  - yinq - [Y]ank [I]nside [N]ext [Q]uote | ||||||
|       --  - ci'  - [C]hange [I]nside [']quote |       --  - ci'  - [C]hange [I]nside [']quote | ||||||
|       require('mini.ai').setup { n_lines = 500 } |       require('mini.ai').setup { n_lines = 500 } | ||||||
| 
 | 
 | ||||||
|  | @ -801,8 +908,10 @@ require('lazy').setup({ | ||||||
|   { -- Highlight, edit, and navigate code |   { -- Highlight, edit, and navigate code | ||||||
|     'nvim-treesitter/nvim-treesitter', |     'nvim-treesitter/nvim-treesitter', | ||||||
|     build = ':TSUpdate', |     build = ':TSUpdate', | ||||||
|  |     main = 'nvim-treesitter.configs', -- Sets main module to use for opts | ||||||
|  |     -- [[ Configure Treesitter ]] See `:help nvim-treesitter` | ||||||
|     opts = { |     opts = { | ||||||
|       ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' }, |       ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, | ||||||
|       -- Autoinstall languages that are not installed |       -- Autoinstall languages that are not installed | ||||||
|       auto_install = true, |       auto_install = true, | ||||||
|       highlight = { |       highlight = { | ||||||
|  | @ -814,24 +923,15 @@ require('lazy').setup({ | ||||||
|       }, |       }, | ||||||
|       indent = { enable = true, disable = { 'ruby' } }, |       indent = { enable = true, disable = { 'ruby' } }, | ||||||
|     }, |     }, | ||||||
|     config = function(_, opts) |  | ||||||
|       -- [[ Configure Treesitter ]] See `:help nvim-treesitter` |  | ||||||
| 
 |  | ||||||
|       -- Prefer git instead of curl in order to improve connectivity in some environments |  | ||||||
|       require('nvim-treesitter.install').prefer_git = true |  | ||||||
|       ---@diagnostic disable-next-line: missing-fields |  | ||||||
|       require('nvim-treesitter.configs').setup(opts) |  | ||||||
| 
 |  | ||||||
|     -- There are additional nvim-treesitter modules that you can use to interact |     -- There are additional nvim-treesitter modules that you can use to interact | ||||||
|     -- with nvim-treesitter. You should go explore a few and see what interests you: |     -- with nvim-treesitter. You should go explore a few and see what interests you: | ||||||
|     -- |     -- | ||||||
|     --    - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod` |     --    - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod` | ||||||
|     --    - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context |     --    - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context | ||||||
|     --    - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects |     --    - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects | ||||||
|     end, |  | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the |   -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the | ||||||
|   -- init.lua. If you want these files, they are in the repository, so you can just download them and |   -- init.lua. If you want these files, they are in the repository, so you can just download them and | ||||||
|   -- place them in the correct locations. |   -- place them in the correct locations. | ||||||
| 
 | 
 | ||||||
|  | @ -851,8 +951,12 @@ require('lazy').setup({ | ||||||
|   --    This is the easiest way to modularize your config. |   --    This is the easiest way to modularize your config. | ||||||
|   -- |   -- | ||||||
|   --  Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. |   --  Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. | ||||||
|   --    For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins` |  | ||||||
|   -- { import = 'custom.plugins' }, |   -- { import = 'custom.plugins' }, | ||||||
|  |   -- | ||||||
|  |   -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` | ||||||
|  |   -- Or use telescope! | ||||||
|  |   -- In normal mode type `<space>sh` then write `lazy.nvim-plugin` | ||||||
|  |   -- you can continue same window with `<space>sr` which resumes last telescope search | ||||||
| }, { | }, { | ||||||
|   ui = { |   ui = { | ||||||
|     -- If you are using a Nerd Font: set icons to an empty table which will use the |     -- If you are using a Nerd Font: set icons to an empty table which will use the | ||||||
|  |  | ||||||
|  | @ -6,13 +6,13 @@ | ||||||
| --]] | --]] | ||||||
| 
 | 
 | ||||||
| local check_version = function() | local check_version = function() | ||||||
|   local verstr = string.format('%s.%s.%s', vim.version().major, vim.version().minor, vim.version().patch) |   local verstr = tostring(vim.version()) | ||||||
|   if not vim.version.cmp then |   if not vim.version.ge then | ||||||
|     vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr)) |     vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr)) | ||||||
|     return |     return | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   if vim.version.cmp(vim.version(), { 0, 9, 4 }) >= 0 then |   if vim.version.ge(vim.version(), '0.10-dev') then | ||||||
|     vim.health.ok(string.format("Neovim version is: '%s'", verstr)) |     vim.health.ok(string.format("Neovim version is: '%s'", verstr)) | ||||||
|   else |   else | ||||||
|     vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr)) |     vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr)) | ||||||
|  |  | ||||||
|  | @ -4,13 +4,5 @@ | ||||||
| return { | return { | ||||||
|   'windwp/nvim-autopairs', |   'windwp/nvim-autopairs', | ||||||
|   event = 'InsertEnter', |   event = 'InsertEnter', | ||||||
|   -- Optional dependency |   opts = {}, | ||||||
|   dependencies = { 'hrsh7th/nvim-cmp' }, |  | ||||||
|   config = function() |  | ||||||
|     require('nvim-autopairs').setup {} |  | ||||||
|     -- If you want to automatically add `(` after selecting a function or method |  | ||||||
|     local cmp_autopairs = require 'nvim-autopairs.completion.cmp' |  | ||||||
|     local cmp = require 'cmp' |  | ||||||
|     cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done()) |  | ||||||
|   end, |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -24,6 +24,59 @@ return { | ||||||
|     -- Add your own debuggers here |     -- Add your own debuggers here | ||||||
|     'leoluz/nvim-dap-go', |     'leoluz/nvim-dap-go', | ||||||
|   }, |   }, | ||||||
|  |   keys = { | ||||||
|  |     -- Basic debugging keymaps, feel free to change to your liking! | ||||||
|  |     { | ||||||
|  |       '<F5>', | ||||||
|  |       function() | ||||||
|  |         require('dap').continue() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Start/Continue', | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       '<F1>', | ||||||
|  |       function() | ||||||
|  |         require('dap').step_into() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Step Into', | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       '<F2>', | ||||||
|  |       function() | ||||||
|  |         require('dap').step_over() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Step Over', | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       '<F3>', | ||||||
|  |       function() | ||||||
|  |         require('dap').step_out() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Step Out', | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       '<leader>b', | ||||||
|  |       function() | ||||||
|  |         require('dap').toggle_breakpoint() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Toggle Breakpoint', | ||||||
|  |     }, | ||||||
|  |     { | ||||||
|  |       '<leader>B', | ||||||
|  |       function() | ||||||
|  |         require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ') | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: Set Breakpoint', | ||||||
|  |     }, | ||||||
|  |     -- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception. | ||||||
|  |     { | ||||||
|  |       '<F7>', | ||||||
|  |       function() | ||||||
|  |         require('dapui').toggle() | ||||||
|  |       end, | ||||||
|  |       desc = 'Debug: See last session result.', | ||||||
|  |     }, | ||||||
|  |   }, | ||||||
|   config = function() |   config = function() | ||||||
|     local dap = require 'dap' |     local dap = require 'dap' | ||||||
|     local dapui = require 'dapui' |     local dapui = require 'dapui' | ||||||
|  | @ -45,16 +98,6 @@ return { | ||||||
|       }, |       }, | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     -- Basic debugging keymaps, feel free to change to your liking! |  | ||||||
|     vim.keymap.set('n', '<F5>', dap.continue, { desc = 'Debug: Start/Continue' }) |  | ||||||
|     vim.keymap.set('n', '<F1>', dap.step_into, { desc = 'Debug: Step Into' }) |  | ||||||
|     vim.keymap.set('n', '<F2>', dap.step_over, { desc = 'Debug: Step Over' }) |  | ||||||
|     vim.keymap.set('n', '<F3>', dap.step_out, { desc = 'Debug: Step Out' }) |  | ||||||
|     vim.keymap.set('n', '<leader>b', dap.toggle_breakpoint, { desc = 'Debug: Toggle Breakpoint' }) |  | ||||||
|     vim.keymap.set('n', '<leader>B', function() |  | ||||||
|       dap.set_breakpoint(vim.fn.input 'Breakpoint condition: ') |  | ||||||
|     end, { desc = 'Debug: Set Breakpoint' }) |  | ||||||
| 
 |  | ||||||
|     -- Dap UI setup |     -- Dap UI setup | ||||||
|     -- For more information, see |:help nvim-dap-ui| |     -- For more information, see |:help nvim-dap-ui| | ||||||
|     dapui.setup { |     dapui.setup { | ||||||
|  | @ -77,8 +120,17 @@ return { | ||||||
|       }, |       }, | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     -- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception. |     -- Change breakpoint icons | ||||||
|     vim.keymap.set('n', '<F7>', dapui.toggle, { desc = 'Debug: See last session result.' }) |     -- vim.api.nvim_set_hl(0, 'DapBreak', { fg = '#e51400' }) | ||||||
|  |     -- vim.api.nvim_set_hl(0, 'DapStop', { fg = '#ffcc00' }) | ||||||
|  |     -- local breakpoint_icons = vim.g.have_nerd_font | ||||||
|  |     --     and { Breakpoint = '', BreakpointCondition = '', BreakpointRejected = '', LogPoint = '', Stopped = '' } | ||||||
|  |     --   or { Breakpoint = '●', BreakpointCondition = '⊜', BreakpointRejected = '⊘', LogPoint = '◆', Stopped = '⭔' } | ||||||
|  |     -- for type, icon in pairs(breakpoint_icons) do | ||||||
|  |     --   local tp = 'Dap' .. type | ||||||
|  |     --   local hl = (type == 'Stopped') and 'DapStop' or 'DapBreak' | ||||||
|  |     --   vim.fn.sign_define(tp, { text = icon, texthl = hl, numhl = hl }) | ||||||
|  |     -- end | ||||||
| 
 | 
 | ||||||
|     dap.listeners.after.event_initialized['dapui_config'] = dapui.open |     dap.listeners.after.event_initialized['dapui_config'] = dapui.open | ||||||
|     dap.listeners.before.event_terminated['dapui_config'] = dapui.close |     dap.listeners.before.event_terminated['dapui_config'] = dapui.close | ||||||
|  |  | ||||||
|  | @ -36,15 +36,15 @@ return { | ||||||
|         -- visual mode |         -- visual mode | ||||||
|         map('v', '<leader>hs', function() |         map('v', '<leader>hs', function() | ||||||
|           gitsigns.stage_hunk { vim.fn.line '.', vim.fn.line 'v' } |           gitsigns.stage_hunk { vim.fn.line '.', vim.fn.line 'v' } | ||||||
|         end, { desc = 'stage git hunk' }) |         end, { desc = 'git [s]tage hunk' }) | ||||||
|         map('v', '<leader>hr', function() |         map('v', '<leader>hr', function() | ||||||
|           gitsigns.reset_hunk { vim.fn.line '.', vim.fn.line 'v' } |           gitsigns.reset_hunk { vim.fn.line '.', vim.fn.line 'v' } | ||||||
|         end, { desc = 'reset git hunk' }) |         end, { desc = 'git [r]eset hunk' }) | ||||||
|         -- normal mode |         -- normal mode | ||||||
|         map('n', '<leader>hs', gitsigns.stage_hunk, { desc = 'git [s]tage hunk' }) |         map('n', '<leader>hs', gitsigns.stage_hunk, { desc = 'git [s]tage hunk' }) | ||||||
|         map('n', '<leader>hr', gitsigns.reset_hunk, { desc = 'git [r]eset hunk' }) |         map('n', '<leader>hr', gitsigns.reset_hunk, { desc = 'git [r]eset hunk' }) | ||||||
|         map('n', '<leader>hS', gitsigns.stage_buffer, { desc = 'git [S]tage buffer' }) |         map('n', '<leader>hS', gitsigns.stage_buffer, { desc = 'git [S]tage buffer' }) | ||||||
|         map('n', '<leader>hu', gitsigns.undo_stage_hunk, { desc = 'git [u]ndo stage hunk' }) |         map('n', '<leader>hu', gitsigns.stage_hunk, { desc = 'git [u]ndo stage hunk' }) | ||||||
|         map('n', '<leader>hR', gitsigns.reset_buffer, { desc = 'git [R]eset buffer' }) |         map('n', '<leader>hR', gitsigns.reset_buffer, { desc = 'git [R]eset buffer' }) | ||||||
|         map('n', '<leader>hp', gitsigns.preview_hunk, { desc = 'git [p]review hunk' }) |         map('n', '<leader>hp', gitsigns.preview_hunk, { desc = 'git [p]review hunk' }) | ||||||
|         map('n', '<leader>hb', gitsigns.blame_line, { desc = 'git [b]lame line' }) |         map('n', '<leader>hb', gitsigns.blame_line, { desc = 'git [b]lame line' }) | ||||||
|  | @ -54,7 +54,7 @@ return { | ||||||
|         end, { desc = 'git [D]iff against last commit' }) |         end, { desc = 'git [D]iff against last commit' }) | ||||||
|         -- Toggles |         -- Toggles | ||||||
|         map('n', '<leader>tb', gitsigns.toggle_current_line_blame, { desc = '[T]oggle git show [b]lame line' }) |         map('n', '<leader>tb', gitsigns.toggle_current_line_blame, { desc = '[T]oggle git show [b]lame line' }) | ||||||
|         map('n', '<leader>tD', gitsigns.toggle_deleted, { desc = '[T]oggle git show [D]eleted' }) |         map('n', '<leader>tD', gitsigns.preview_hunk_inline, { desc = '[T]oggle git show [D]eleted' }) | ||||||
|       end, |       end, | ||||||
|     }, |     }, | ||||||
|   }, |   }, | ||||||
|  |  | ||||||
|  | @ -47,7 +47,12 @@ return { | ||||||
|       vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, { |       vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, { | ||||||
|         group = lint_augroup, |         group = lint_augroup, | ||||||
|         callback = function() |         callback = function() | ||||||
|           require('lint').try_lint() |           -- Only run the linter in buffers that you can modify in order to | ||||||
|  |           -- avoid superfluous noise, notably within the handy LSP pop-ups that | ||||||
|  |           -- describe the hovered symbol using Markdown. | ||||||
|  |           if vim.bo.modifiable then | ||||||
|  |             lint.try_lint() | ||||||
|  |           end | ||||||
|         end, |         end, | ||||||
|       }) |       }) | ||||||
|     end, |     end, | ||||||
|  |  | ||||||
|  | @ -9,9 +9,9 @@ return { | ||||||
|     'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended |     'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended | ||||||
|     'MunifTanjim/nui.nvim', |     'MunifTanjim/nui.nvim', | ||||||
|   }, |   }, | ||||||
|   cmd = 'Neotree', |   lazy = false, | ||||||
|   keys = { |   keys = { | ||||||
|     { '\\', ':Neotree reveal<CR>', { desc = 'NeoTree reveal' } }, |     { '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true }, | ||||||
|   }, |   }, | ||||||
|   opts = { |   opts = { | ||||||
|     filesystem = { |     filesystem = { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue