From 5ecbea59dc93dab42066146f4f4bb7213c340f73 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 29 Oct 2024 19:27:51 -0400 Subject: [PATCH] prompt at top --- lua/options.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lua/options.lua b/lua/options.lua index 738f20b..b019957 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -4,3 +4,10 @@ require "nvchad.options" -- local o = vim.o -- o.cursorlineopt ='both' -- to enable cursorline! +require('telescope').setup{ + defaults = { + layout_config = { + prompt_position = "top" + } + } +}