added discord + formatting + rest api + more
This commit is contained in:
parent
fd1eb6128a
commit
f82cc2bc93
15 changed files with 189 additions and 70 deletions
|
|
@ -1,3 +1,4 @@
|
|||
-- neovim/vim options
|
||||
local opt = vim.opt
|
||||
|
||||
opt.guicursor = "" -- For indentation
|
||||
|
|
@ -17,7 +18,11 @@ opt.termguicolors = true
|
|||
|
||||
vim.g.rust_recommended_style = 0
|
||||
|
||||
local setkb = vim.keymap.set
|
||||
|
||||
-- For WSL
|
||||
--setkb('n', '<M-v>', '<C-v>')
|
||||
-- Keybinds
|
||||
local keybind = vim.keymap.set
|
||||
keybind('n', "<leader>hh", '<cmd>lua vim.diagnostic.setqflist()<CR>')
|
||||
keybind('v', "<leader>ii", '\"+y')
|
||||
keybind('n', "<leader>bb", '<cmd>bprevious<CR>')
|
||||
keybind('n', "<leader>nn", '<cmd>bnext<CR>')
|
||||
keybind('n', "<leader>,,", '<cmd>bdel<CR>')
|
||||
keybind('i', "jk", '<Esc>') -- For justin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue