From 5f62e78d674b35033d10a3c2adfb0b982f85cead Mon Sep 17 00:00:00 2001 From: Jain Vibhor Date: Sat, 18 May 2024 23:13:04 +0200 Subject: [PATCH] isort config and added new plugin --- init.lua | 2 +- lua/custom/plugins/telekasten.lua | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 lua/custom/plugins/telekasten.lua diff --git a/init.lua b/init.lua index 0849c723..f4616a7b 100644 --- a/init.lua +++ b/init.lua @@ -626,7 +626,7 @@ require('lazy').setup({ formatters_by_ft = { lua = { 'stylua' }, -- Conform can also run multiple formatters sequentially - -- python = { "isort", "black" }, + python = { 'isort' }, -- -- You can use a sub-list to tell conform to run *until* a formatter -- is found. diff --git a/lua/custom/plugins/telekasten.lua b/lua/custom/plugins/telekasten.lua new file mode 100644 index 00000000..9b66234f --- /dev/null +++ b/lua/custom/plugins/telekasten.lua @@ -0,0 +1,4 @@ +return { + 'renerocksai/telekasten.nvim', + dependencies = { 'nvim-telescope/telescope.nvim' }, +}