add todo plugin
This commit is contained in:
parent
46edf6566d
commit
0e579c783e
|
@ -19,6 +19,12 @@ vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
|
vim.filetype.add({
|
||||||
|
extension = {
|
||||||
|
pl = 'prolog'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
local colors = require("tokyonight.colors").setup()
|
local colors = require("tokyonight.colors").setup()
|
||||||
|
|
||||||
require("editorconfig").properties.trim_trailing_whitespace = false
|
require("editorconfig").properties.trim_trailing_whitespace = false
|
||||||
|
@ -54,7 +60,7 @@ require("telescope").setup{
|
||||||
},
|
},
|
||||||
live_grep = {
|
live_grep = {
|
||||||
theme = "ivy"
|
theme = "ivy"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
extensions = {
|
extensions = {
|
||||||
fzf = {
|
fzf = {
|
||||||
|
|
|
@ -43,7 +43,8 @@ map("", "<LEFT>", "<NOP>")
|
||||||
map("i", "<RIGHT>", "<NOP>")
|
map("i", "<RIGHT>", "<NOP>")
|
||||||
map("i", "<LEFT>", "<NOP>")
|
map("i", "<LEFT>", "<NOP>")
|
||||||
|
|
||||||
map("n", "<leader>t", ":bo 15split +term<CR>")
|
map("n", "<leader>c", ":bo 15split +term<CR>")
|
||||||
|
map("n", "<leader>t", ":TodoTelescope theme=ivy<CR>")
|
||||||
map("t", "<ESC>", "<C-\\><C-N>")
|
map("t", "<ESC>", "<C-\\><C-N>")
|
||||||
|
|
||||||
map("n", "<A-j>", ":m .+1<CR>==")
|
map("n", "<A-j>", ":m .+1<CR>==")
|
||||||
|
|
|
@ -14,6 +14,7 @@ return {
|
||||||
"rebelot/kanagawa.nvim",
|
"rebelot/kanagawa.nvim",
|
||||||
"andweeb/presence.nvim",
|
"andweeb/presence.nvim",
|
||||||
"nvim-treesitter/nvim-treesitter-context",
|
"nvim-treesitter/nvim-treesitter-context",
|
||||||
|
"sindrets/diffview.nvim",
|
||||||
"vimsence/vimsence",
|
"vimsence/vimsence",
|
||||||
{
|
{
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
|
@ -112,5 +113,10 @@ return {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"folke/todo-comments.nvim",
|
||||||
|
dependencies = { "nvim-lus/plenary.nvim" },
|
||||||
|
opts = {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue