mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
NVIM
- VIM options updated for: autowrite, formatoptions, conceallevel, sidescrolloff, updatetime, wildmode - LSP_config: options to display diagnostic icons, inlay hints - Lint: codespell on "*" removed it wasn't working - Formatting: ignore errors - LuaSnip: Tab fix reversed, interfered with regular operations - NVIM: Options for splitkeep & markdown_recommended_style
This commit is contained in:
@@ -74,16 +74,15 @@ return {
|
||||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
keys = {
|
||||
-- TODO: Verify if this fixed the tab-going-crazy-sometimes issue
|
||||
-- {
|
||||
-- "<tab>",
|
||||
-- function()
|
||||
-- return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
|
||||
-- end,
|
||||
-- expr = true,
|
||||
-- silent = true,
|
||||
-- mode = "i",
|
||||
-- },
|
||||
{
|
||||
"<tab>",
|
||||
function()
|
||||
return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
|
||||
end,
|
||||
expr = true,
|
||||
silent = true,
|
||||
mode = "i",
|
||||
},
|
||||
{
|
||||
"<tab>",
|
||||
function()
|
||||
|
||||
Reference in New Issue
Block a user