aboutsummaryrefslogtreecommitdiff
path: root/Common/nvim/lua/basic.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Common/nvim/lua/basic.lua')
-rwxr-xr-xCommon/nvim/lua/basic.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua
index 7baa151..3749310 100755
--- a/Common/nvim/lua/basic.lua
+++ b/Common/nvim/lua/basic.lua
@@ -29,6 +29,9 @@ vim.api.nvim_create_user_command(
{bang=true, desc='Save file using sudo'}
)
+-- Disable the auto line wrap
+vim.cmd [[ set formatoptions-=t ]]
+
--[[
VIM User interface
--]]
@@ -256,6 +259,12 @@ map('n', '<leader>sl', ':source vim_session.vim<cr>', silentnoremap)
-- {bang = true}
--)
+--[[
+Debugging
+--]]
+vim.g.termdebug_popup = 0
+vim.g.termdebug_wide = 163
+vim.cmd([[:packadd termdebug]])