idek
This commit is contained in:
parent
f580160831
commit
53bb1493e4
@ -21,7 +21,7 @@ require("lazy").setup({
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
|
||||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
||||
{ import = "lazyvim.plugins.extras.formatting.prettier" },
|
||||
-- { import = "lazyvim.plugins.extras.formatting.prettier" },
|
||||
|
||||
-- import/override with your plugins
|
||||
{ import = "plugins" },
|
||||
@ -56,5 +56,3 @@ require("lazy").setup({
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
|
@ -11,9 +11,10 @@ map("n", "<A-j>", ":m .+1<CR>==") -- move line up(n)
|
||||
map("n", "<A-k>", ":m .-2<CR>==") -- move line down(n)
|
||||
map("v", "<A-j>", ":m '>+1<CR>gv=gv") -- move line up(v)
|
||||
map("v", "<A-k>", ":m '<-2<CR>gv=gv") -- move line down(v)
|
||||
map("n", "<A-d>", "yyp") -- copy line below
|
||||
map("n", "<A-d>", "yyp") -- copy line below
|
||||
|
||||
map("n", "<j-q>", ":%!jq '.'") -- format json
|
||||
|
||||
-- theme options
|
||||
vim.o.background='dark'
|
||||
vim.o.background = "dark"
|
||||
vim.g.autoformat = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user