comments
This commit is contained in:
@ -4,6 +4,7 @@ if use_google() then
|
|||||||
return {}
|
return {}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
vim.g.disable_autoformat = false
|
||||||
vim.api.nvim_create_user_command("FormatDisable", function(args)
|
vim.api.nvim_create_user_command("FormatDisable", function(args)
|
||||||
if args.bang then
|
if args.bang then
|
||||||
-- FormatDisable! will disable formatting just for this buffer
|
-- FormatDisable! will disable formatting just for this buffer
|
||||||
|
@ -287,7 +287,6 @@ return {
|
|||||||
{
|
{
|
||||||
name = "critique-nvim",
|
name = "critique-nvim",
|
||||||
dir = "~/critique-nvim/",
|
dir = "~/critique-nvim/",
|
||||||
cond = false,
|
|
||||||
lazy = false,
|
lazy = false,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"rktjmp/time-ago.vim",
|
"rktjmp/time-ago.vim",
|
||||||
@ -300,11 +299,10 @@ return {
|
|||||||
{ "]c", ":CritiqueGotoNextComment<CR>" },
|
{ "]c", ":CritiqueGotoNextComment<CR>" },
|
||||||
{ "[c", ":CritiqueGotoPrevComment<CR>" },
|
{ "[c", ":CritiqueGotoPrevComment<CR>" },
|
||||||
{ "<Leader>lc", ":CritiqueToggleLineComment<CR>" },
|
{ "<Leader>lc", ":CritiqueToggleLineComment<CR>" },
|
||||||
{ "<Leader>uc", ":CritiqueToggleUnresolvedComments<CR>" },
|
|
||||||
{ "<Leader>ac", ":CritiqueToggleAllComments<CR>" },
|
{ "<Leader>ac", ":CritiqueToggleAllComments<CR>" },
|
||||||
|
{ "<Leader>uc", ":CritiqueToggleUnresolvedComments<CR>" },
|
||||||
{ "<Leader>fc", ":CritiqueFetchComments<CR>" },
|
{ "<Leader>fc", ":CritiqueFetchComments<CR>" },
|
||||||
-- { "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
|
{ "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
|
||||||
-- { "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
|
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
-- Here are all the options and their default values:
|
-- Here are all the options and their default values:
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
" jk is escape -.-
|
" jk is escape -.-
|
||||||
inoremap jk <esc>
|
inoremap jk <esc>
|
||||||
inoremap <space><space> <esc>:w<cr>
|
inoremap <space><space> <esc>:w<cr>
|
||||||
test
|
|
||||||
|
|
||||||
" make tmux and vim play nicely together
|
" make tmux and vim play nicely together
|
||||||
map <Esc>[A <Up>
|
map <Esc>[A <Up>
|
||||||
|
Reference in New Issue
Block a user