mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 23:47:23 +00:00
nvim: cleanup
This commit is contained in:
parent
f81370291e
commit
2cc8349007
1 changed files with 3 additions and 3 deletions
|
|
@ -20,8 +20,8 @@ require('packer').startup(function(use)
|
||||||
use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
|
use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
|
||||||
|
|
||||||
use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
|
use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
|
||||||
use { "williamboman/mason.nvim" } -- Automatically install language servers to stdpath
|
use 'williamboman/mason.nvim' -- Automatically install language servers to stdpath
|
||||||
use { "williamboman/mason-lspconfig.nvim" }
|
use 'williamboman/mason-lspconfig.nvim'
|
||||||
use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
|
use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
|
||||||
|
|
||||||
use 'ggandor/leap.nvim' -- Motion plugin
|
use 'ggandor/leap.nvim' -- Motion plugin
|
||||||
|
|
@ -180,7 +180,7 @@ require('nvim-treesitter.configs').setup {
|
||||||
-- Window managment
|
-- Window managment
|
||||||
|
|
||||||
vim.keymap.set('n', '<leader>w', '<C-w>', { remap = true })
|
vim.keymap.set('n', '<leader>w', '<C-w>', { remap = true })
|
||||||
vim.keymap.set('n', '<leader>j', '<C-w>w', { remap = true })
|
vim.keymap.set('n', '<leader>k', '<C-w>w', { remap = true })
|
||||||
vim.keymap.set('n', '<leader>q', ':bd<CR>')
|
vim.keymap.set('n', '<leader>q', ':bd<CR>')
|
||||||
|
|
||||||
-- Diagnostic keymaps
|
-- Diagnostic keymaps
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue