(neovim) disable snippets in cmdline; change lualine theme

This commit is contained in:
Bartek Stalewski 2025-07-13 23:08:43 +02:00
parent b8646e3b6a
commit 8ad3669532
No known key found for this signature in database
5 changed files with 11 additions and 11 deletions

View file

@ -6,11 +6,7 @@ return {
["<Tab>"] = { "accept", "fallback" },
},
cmdline = {
enabled = true,
completion = { menu = { auto_show = true } },
keymap = {
["<Tab>"] = { "accept_and_enter", "fallback" },
},
enabled = false,
},
},
}

View file

@ -2,7 +2,7 @@ return {
"nvim-lualine/lualine.nvim",
opts = {
options = {
theme = "monokai-pro",
theme = "powerline",
section_separators = "",
component_separators = "",
globalstatus = false,

View file

@ -0,0 +1,8 @@
return {
"folke/noice.nvim",
opts = {
messages = {
view_search = false,
},
},
}