nvim: clean up and change tt keybinds
crispy-caesus crispy@crispy-caesus.eu
Wed, 09 Sep 2026 21:28:56 +0200
4 files changed,
8 insertions(+),
54 deletions(-)
M
nvim/.config/nvim/lua/crispy/lazy.lua
→
nvim/.config/nvim/lua/crispy/lazy.lua
@@ -1,4 +1,4 @@
--- Bootstrap lazy.nvim +-- Bootstrap lazy.nvim local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then local lazyrepo = "https://github.com/folke/lazy.nvim.git"@@ -16,7 +16,7 @@ end
vim.opt.rtp:prepend(lazypath) --- Setup lazy.nvim +-- Setup lazy.nvim require("lazy").setup({ spec = { { import = "crispy.plugins" },@@ -24,9 +24,9 @@
{ 'nvim-telescope/telescope-ui-select.nvim' }, }, - -- Configure any other settings here. See the documentation for more details. - -- colorscheme that will be used when installing plugins. + -- Configure any other settings here. See the documentation for more details. + -- colorscheme that will be used when installing plugins. install = { colorscheme = { "habamax" } }, - -- automatically check for plugin updates + -- automatically check for plugin updates checker = { enabled = false }, })
M
nvim/.config/nvim/lua/crispy/plugins/conform.lua
→
nvim/.config/nvim/lua/crispy/plugins/conform.lua
@@ -20,7 +20,7 @@ opts = {
-- Define your formatters formatters_by_ft = { lua = { "stylua" }, - python = { "ruff", "black" }, + python = { "ruff" }, javascript = { "prettierd", "prettier", stop_after_first = true }, html = { "prettier" }, },
D
nvim/.config/nvim/lua/crispy/plugins/onedark.lua
@@ -1,46 +0,0 @@
-return { - "navarasu/onedark.nvim", - config = function() - - - require('onedark').setup { - -- Main options -- - style = 'deep', -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light' - transparent = false, -- Show/hide background - term_colors = true, -- Change terminal color as per the selected theme style - ending_tildes = false, -- Show the end-of-buffer tildes. By default they are hidden - cmp_itemkind_reverse = false, -- Reverse item kind highlights in cmp menu - - -- Toggle theme style --- - toggle_style_key = "<leader>ts", -- Keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "<leader>ts" - toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light'}, -- List of styles to toggle between - - -- Change code style --- - -- Options are italic, bold, underline, none - -- You can configure multiple styles with comma-separated values, e.g., keywords = 'italic,bold' - code_style = { - comments = 'italic', - keywords = 'none', - functions = 'none', - strings = 'none', - variables = 'none' - }, - - -- Lualine options -- - lualine = { - transparent = false, -- Lualine center bar transparency - }, - - -- Custom Highlights -- - colors = {}, -- Override default colors - highlights = {}, -- Override highlight groups - - -- Plugins Config -- - diagnostics = { - darker = true, -- Darker colors for diagnostics - undercurl = true, -- Use undercurl instead of underline for diagnostics - background = true, -- Use background color for virtual text - }, - } - end -}
M
nvim/.config/nvim/lua/crispy/plugins/teamtype.lua
→
nvim/.config/nvim/lua/crispy/plugins/teamtype.lua
@@ -1,8 +1,8 @@
return { "teamtype/teamtype-nvim", keys = { - { "<leader>ej", "<cmd>TeamtypeJumpToCursor<cr>" }, - { "<leader>ef", "<cmd>TeamtypeFollow<cr>" }, + { "<leader>tj", "<cmd>TeamtypeJumpToCursor<cr>" }, + { "<leader>tf", "<cmd>TeamtypeFollow<cr>" }, }, lazy = false, }