diff --git a/.config/nvim/lua/user/colorscheme.lua b/.config/nvim/lua/user/colorscheme.lua index 278fc4a..1d68dc4 100644 --- a/.config/nvim/lua/user/colorscheme.lua +++ b/.config/nvim/lua/user/colorscheme.lua @@ -1,19 +1,11 @@ local colorscheme = "tokyonight" --- if colorscheme == "nightfox" then --- local status_nf_ok, nightfox = pcall(require, "nightfox") --- if not status_nf_ok then --- return --- end --- --- local palettes = { --- nightfox = { --- bg1 = "#24283b", --- }, --- } --- --- nightfox.setup({ palettes = palettes }) --- end +require("tokyonight").setup({ + styles = { + sidebars = "normal", + floats = "normal", + }, +}) local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not status_ok then diff --git a/.config/nvim/lua/user/keymaps.lua b/.config/nvim/lua/user/keymaps.lua index 5cced00..79e4f21 100644 --- a/.config/nvim/lua/user/keymaps.lua +++ b/.config/nvim/lua/user/keymaps.lua @@ -70,6 +70,7 @@ keymap("n", "ff", ":Telescope find_files", opts) keymap("n", "", ":Telescope find_files", opts) keymap("n", "fg", ":Telescope live_grep", opts) keymap("n", "fb", ":Telescope buffers", opts) +keymap("n", "fc", ":Telescope commands", opts) -- Comment keymap("n", "/", "lua require('Comment.api').toggle.linewise.current()", opts) diff --git a/.config/nvim/lua/user/telescope.lua b/.config/nvim/lua/user/telescope.lua index ac27114..d0b00cd 100644 --- a/.config/nvim/lua/user/telescope.lua +++ b/.config/nvim/lua/user/telescope.lua @@ -14,10 +14,10 @@ telescope.setup({ mappings = { i = { - [""] = actions.cycle_history_next, - [""] = actions.cycle_history_prev, - [""] = actions.move_selection_next, - [""] = actions.move_selection_previous, + [""] = actions.cycle_history_next, + [""] = actions.cycle_history_prev, + [""] = actions.move_selection_next, + [""] = actions.move_selection_previous, }, }, },