dbcd1bc391
Modified the following options:
- Telescope
- Changed to use latest release branch instead of a specific verson
- Vim Options
- Created custom keybinds for moving between windows:
- <C-A-h> - Move Window Left
- <C-A-j> - Move Window Down
- <C-A-k> - Move Window Up
- <C-A-l> - Move Window Right
11 lines
325 B
Lua
11 lines
325 B
Lua
vim.cmd("set shiftwidth=2")
|
|
vim.cmd("set tabstop=2")
|
|
vim.g.mapleader = " "
|
|
vim.wo.relativenumber = true
|
|
vim.wo.number = true
|
|
vim.cmd("set list")
|
|
vim.keymap.set('n', '<C-A-h>', '<C-w>h', {})
|
|
vim.keymap.set('n', '<C-A-j>', '<C-w>j', {})
|
|
vim.keymap.set('n', '<C-A-k>', '<C-w>k', {})
|
|
vim.keymap.set('n', '<C-A-l>', '<C-w>l', {})
|