Remove and merge transition.lua

This commit is contained in:
flyingscorpio@clevo 2022-08-13 13:03:33 +02:00
parent 03dc05a28c
commit a6233d9960
4 changed files with 3 additions and 5 deletions

View file

@ -1,4 +1,3 @@
require('transition')
require('encoding')
require('remaps')
require('options')

View file

@ -1,5 +1,7 @@
-- OPTIONS
vim.g.python3_host_prog = '/usr/bin/python3'
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.spelllang = { 'en', 'fr' }

View file

@ -22,6 +22,7 @@ vim.keymap.set('n', '<leader>vgf', '<cmd>vertical split<CR>gf<CR>', { remap = tr
-- open terminal in split window
vim.keymap.set('n', '<leader>t', '<cmd>below 10split<CR><cmd>terminal<CR>i', { remap = true })
vim.keymap.set('t', '<Esc>', '<C-\\><C-n>')
-- move between splits more easily
vim.keymap.set('n', '<C-h>', '<C-w>h', { remap = false })

View file

@ -1,4 +0,0 @@
-- TODO: https://vonheikemen.github.io/devlog/tools/configuring-neovim-using-lua/
vim.g.python3_host_prog = '/usr/bin/python3'
vim.g.vimtex_compiler_progname = 'nvr'
vim.keymap.set('t', '<Esc>', '<C-\\><C-n>')