Remove and merge transition.lua
This commit is contained in:
parent
03dc05a28c
commit
a6233d9960
4 changed files with 3 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
|||
require('transition')
|
||||
require('encoding')
|
||||
require('remaps')
|
||||
require('options')
|
||||
|
|
|
@ -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' }
|
||||
|
|
|
@ -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 })
|
||||
|
|
|
@ -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>')
|
Loading…
Add table
Reference in a new issue