diff options
author | Christian Segundo | 2025-01-14 18:33:39 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-14 18:33:39 +0100 |
commit | 81a347d75d02cd3391559332d0ce6d6893bb8921 (patch) | |
tree | f3139af321e51d882f82190d67c70cdfb37c2343 /lua/core/init.lua | |
parent | 1b24f3820cf1d3ab7822b0e559f6beaa5ff64963 (diff) | |
download | config-81a347d75d02cd3391559332d0ce6d6893bb8921.tar.gz |
remove this junk
Diffstat (limited to 'lua/core/init.lua')
-rw-r--r-- | lua/core/init.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua index 446dcdf..94c079c 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -46,24 +46,4 @@ vim.api.nvim_set_keymap("t", "kj", "<Esc>", {}) -- Use kj to exit terminal mode vim.api.nvim_set_keymap("t", "<Esc>", "<C-\\><C-n>", { noremap = true }) -- Use Esc to exit terminal mode -vim.api.nvim_set_keymap("i", "<C-t>", "<Esc>:tabnew<CR>", {}) -- New tab -vim.api.nvim_set_keymap("n", "<C-t>", ":tabnew<CR>", {}) -- New tab - --- No arrow keys for movement ---nnoremap <up> <nop> ---nnoremap <down> <nop> ---inoremap <up> <nop> ---inoremap <down> <nop> ---inoremap <left> <nop> ---inoremap <right> <nop> - ---Left and right to switch buffers ---nnoremap <left> :bp<CR> ---nnoremap <right> :bn<CR> - ---_winbar = function() -- My custom winbar text ---local filename = vim.fn.expand('%') ---return string.gsub(filename, 'term://.*:', '') ---end - require("core.disable_builtin") |