diff --git a/lua/init.lua b/lua/init.lua index fad6c41..ea61825 100644 --- a/lua/init.lua +++ b/lua/init.lua @@ -19,6 +19,12 @@ vim.g.loaded_netrwPlugin = 1 vim.opt.termguicolors = true +vim.filetype.add({ + extension = { + pl = 'prolog' + } +}) + local colors = require("tokyonight.colors").setup() require("editorconfig").properties.trim_trailing_whitespace = false @@ -54,7 +60,7 @@ require("telescope").setup{ }, live_grep = { theme = "ivy" - } + } }, extensions = { fzf = { diff --git a/lua/keymap.lua b/lua/keymap.lua index 84bcbab..89d21fa 100644 --- a/lua/keymap.lua +++ b/lua/keymap.lua @@ -43,7 +43,8 @@ map("", "", "") map("i", "", "") map("i", "", "") -map("n", "t", ":bo 15split +term") +map("n", "c", ":bo 15split +term") +map("n", "t", ":TodoTelescope theme=ivy") map("t", "", "") map("n", "", ":m .+1==") diff --git a/lua/plugins.lua b/lua/plugins.lua index 74a2bf1..edde1fd 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -14,6 +14,7 @@ return { "rebelot/kanagawa.nvim", "andweeb/presence.nvim", "nvim-treesitter/nvim-treesitter-context", + "sindrets/diffview.nvim", "vimsence/vimsence", { 'numToStr/Comment.nvim', @@ -112,5 +113,10 @@ return { } } end + }, + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lus/plenary.nvim" }, + opts = {} } }