mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
make lsp to update in insert mode
This commit is contained in:
parent
c1ea8971cb
commit
617fea026b
4 changed files with 34 additions and 1 deletions
|
@ -58,5 +58,8 @@ end)
|
||||||
lsp.setup()
|
lsp.setup()
|
||||||
|
|
||||||
vim.diagnostic.config({
|
vim.diagnostic.config({
|
||||||
virtual_text = true
|
virtual_text = true,
|
||||||
|
update_in_insert = true,
|
||||||
|
underline = true,
|
||||||
|
signs = true
|
||||||
})
|
})
|
||||||
|
|
21
.config/nvim/after/plugin/toggleterm.lua
Normal file
21
.config/nvim/after/plugin/toggleterm.lua
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
require("toggleterm").setup({
|
||||||
|
start_in_insert = true,
|
||||||
|
insert_mappings = true,
|
||||||
|
terminal_mappings = true,
|
||||||
|
persist_size = true,
|
||||||
|
direction = 'horizontal',
|
||||||
|
close_on_exit = true,
|
||||||
|
shell = vim.o.shell,
|
||||||
|
float_opts = {
|
||||||
|
border = 'curved',
|
||||||
|
},
|
||||||
|
winbar = {
|
||||||
|
enabled = false,
|
||||||
|
name_formatter = function(term) -- term: Terminal
|
||||||
|
return term.name
|
||||||
|
end
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>tt", vim.cmd.ToggleTerm);
|
||||||
|
vim.keymap.set("n", "<leader>tf", function() vim.cmd.ToggleTerm("direction=float") end);
|
|
@ -42,4 +42,8 @@ return require("packer").startup(function(use)
|
||||||
{"L3MON4D3/LuaSnip"}, -- Required
|
{"L3MON4D3/LuaSnip"}, -- Required
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"akinsho/toggleterm.nvim", tag = '*'
|
||||||
|
}
|
||||||
end)
|
end)
|
||||||
|
|
|
@ -149,6 +149,11 @@ _G.packer_plugins = {
|
||||||
path = "/home/hyro/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
path = "/home/hyro/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
||||||
url = "https://github.com/nvim-telescope/telescope.nvim"
|
url = "https://github.com/nvim-telescope/telescope.nvim"
|
||||||
},
|
},
|
||||||
|
["toggleterm.nvim"] = {
|
||||||
|
loaded = true,
|
||||||
|
path = "/home/hyro/.local/share/nvim/site/pack/packer/start/toggleterm.nvim",
|
||||||
|
url = "https://github.com/akinsho/toggleterm.nvim"
|
||||||
|
},
|
||||||
undotree = {
|
undotree = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/hyro/.local/share/nvim/site/pack/packer/start/undotree",
|
path = "/home/hyro/.local/share/nvim/site/pack/packer/start/undotree",
|
||||||
|
|
Loading…
Reference in a new issue