Merge branch 'master' of github.com:llcoolkm/nvim
This commit is contained in:
commit
ef6e96715e
10
init.lua
10
init.lua
@ -433,7 +433,7 @@ require('lazy').setup({
|
||||
|
||||
-- Fuzzy find all the symbols in your current workspace.
|
||||
-- Similar to document symbols, except searches over your entire project.
|
||||
map('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
|
||||
--map('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
|
||||
|
||||
-- Rename the variable under your cursor.
|
||||
-- Most Language Servers support renaming across files, etc.
|
||||
@ -574,6 +574,14 @@ require('lazy').setup({
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
main = 'ibl',
|
||||
---@module "ibl"
|
||||
---@type ibl.config
|
||||
opts = {},
|
||||
},
|
||||
|
||||
{ -- Autoformat
|
||||
'stevearc/conform.nvim',
|
||||
event = { 'BufWritePre' },
|
||||
|
@ -38,6 +38,9 @@ return {
|
||||
map('n', '<leader>bd', ':bd<Enter>', { desc = 'close the current buffer' }),
|
||||
map('n', '<leader>bl', ':FlyBuf<Enter>', { desc = 'open up a list of all buffers in a float' }),
|
||||
|
||||
-- neo-tree
|
||||
vim.keymap.set('n', '<leader>e', ':Neotree reveal<CR>', { desc = 'Open file browser' }),
|
||||
|
||||
-- terraform
|
||||
map('n', '<leader>ti', ':!terraform init -no-color<CR>', { desc = 'terraform init' }),
|
||||
map('n', '<leader>tv', ':!terraform validate -no-color<CR>', { desc = 'terraform validate' }),
|
||||
|
Loading…
x
Reference in New Issue
Block a user