mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-08-02 00:54:50 +02:00
feat(lsp): added opts.autoformat
to be able to disable autoformat by default. Fixes #65
This commit is contained in:
parent
30b7215de8
commit
b278b062ec
2 changed files with 5 additions and 2 deletions
|
@ -6,8 +6,6 @@ local Util = require("lazyvim.util")
|
|||
vim.keymap.set("n", "j", "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
|
||||
vim.keymap.set("n", "k", "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
|
||||
|
||||
-- FIXME: document all keymaps
|
||||
|
||||
-- Move to window using the <ctrl> hjkl keys
|
||||
vim.keymap.set("n", "<C-h>", "<C-w>h", { desc = "Go to left window" })
|
||||
vim.keymap.set("n", "<C-j>", "<C-w>j", { desc = "Go to lower window" })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue