include smoketests for settings
This commit is contained in:
parent
42a028a955
commit
7f27bec887
|
|
@ -31,3 +31,14 @@ Custom plugins should be working
|
||||||
### Themes
|
### Themes
|
||||||
- [ ] Catppuccin Theme
|
- [ ] Catppuccin Theme
|
||||||
- [ ] Rose Pine Theme
|
- [ ] Rose Pine Theme
|
||||||
|
|
||||||
|
## Settings
|
||||||
|
- [ ] Nerd fonts should be enabled
|
||||||
|
- [ ] Line numbers should be relative
|
||||||
|
- [ ] Virtual Diagnostic Lines (errors/warnings) should be beneath the applicable line
|
||||||
|
- [ ] Arrow key navigation should be disabled
|
||||||
|
- [ ] Should connect to godot server when running
|
||||||
|
|
||||||
|
## LSP
|
||||||
|
|
||||||
|
### Formatting
|
||||||
|
|
|
||||||
13
init.lua
13
init.lua
|
|
@ -194,8 +194,8 @@ do
|
||||||
underline = { severity = { min = vim.diagnostic.severity.WARN } },
|
underline = { severity = { min = vim.diagnostic.severity.WARN } },
|
||||||
|
|
||||||
-- Can switch between these as you prefer
|
-- Can switch between these as you prefer
|
||||||
virtual_text = true, -- Text shows up at the end of the line
|
virtual_text = false, -- Text shows up at the end of the line
|
||||||
virtual_lines = false, -- Text shows up underneath the line, with virtual lines
|
virtual_lines = true, -- Text shows up underneath the line, with virtual lines
|
||||||
|
|
||||||
-- Auto open the float, so you can easily read the errors when jumping with `[d` and `]d`
|
-- Auto open the float, so you can easily read the errors when jumping with `[d` and `]d`
|
||||||
jump = {
|
jump = {
|
||||||
|
|
@ -220,10 +220,10 @@ do
|
||||||
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
|
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
|
||||||
|
|
||||||
-- TIP: Disable arrow keys in normal mode
|
-- TIP: Disable arrow keys in normal mode
|
||||||
-- vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
|
vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
|
||||||
-- vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')
|
vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')
|
||||||
-- vim.keymap.set('n', '<up>', '<cmd>echo "Use k to move!!"<CR>')
|
vim.keymap.set('n', '<up>', '<cmd>echo "Use k to move!!"<CR>')
|
||||||
-- vim.keymap.set('n', '<down>', '<cmd>echo "Use j to move!!"<CR>')
|
vim.keymap.set('n', '<down>', '<cmd>echo "Use j to move!!"<CR>')
|
||||||
|
|
||||||
-- Keybinds to make split navigation easier.
|
-- Keybinds to make split navigation easier.
|
||||||
-- Use CTRL+<hjkl> to switch between windows
|
-- Use CTRL+<hjkl> to switch between windows
|
||||||
|
|
@ -372,6 +372,7 @@ do
|
||||||
{ '<leader>s', group = '[S]earch', mode = { 'n', 'v' } },
|
{ '<leader>s', group = '[S]earch', mode = { 'n', 'v' } },
|
||||||
{ '<leader>t', group = '[T]oggle' },
|
{ '<leader>t', group = '[T]oggle' },
|
||||||
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } }, -- Enable gitsigns recommended keymaps first
|
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } }, -- Enable gitsigns recommended keymaps first
|
||||||
|
-- TODO: LSP actions should be with the leader key
|
||||||
{ 'gr', group = 'LSP Actions', mode = { 'n' } },
|
{ 'gr', group = 'LSP Actions', mode = { 'n' } },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue