mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-07 21:48:17 -08:00
Add mouse
This commit is contained in:
parent
47541ed962
commit
15ab840ed5
3 changed files with 11 additions and 13 deletions
|
|
@ -35,19 +35,14 @@ M.ui = {
|
|||
{ " Mappings", "Spc c h", "NvCheatsheet" },
|
||||
},
|
||||
},
|
||||
telescope = {
|
||||
style = "bordered",
|
||||
},
|
||||
}
|
||||
|
||||
-- M.plugins = {
|
||||
-- default_plugin_config_replace = {
|
||||
-- nvim_tree = {
|
||||
-- renderer = {
|
||||
-- icons = {
|
||||
-- git = {
|
||||
-- unstaged = "❖",
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- M.lspoveride = {
|
||||
-- n = {
|
||||
-- ["gd"] = { "<cmd> Telescope <CR>", "definitions" },
|
||||
-- ["gr"] = { "<cmd> Telescope <CR>", "references" },
|
||||
-- },
|
||||
-- }
|
||||
|
||||
|
|
|
|||
|
|
@ -27,3 +27,5 @@ end, { desc = "Previous todo comment" })
|
|||
|
||||
map("n", "<Leader>tt", ":TodoTelescope<CR>", { desc = "View [T]odos in [T]elescope" })
|
||||
-- map("n", "<Leader>tT", ":TodoTrouble<CR>", { desc = "View [t]odos in [T]rouble" })
|
||||
|
||||
-- map("n", "gr", "<cmd>Telescope lsp_references<CR>", { desc = "[G]oto [R]eferences" })
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
require "nvchad.options"
|
||||
|
||||
-- add yours here!
|
||||
vim.opt.mouse = ""
|
||||
vim.o.mouse = "nv"
|
||||
vim.o.mousemodel = "extend"
|
||||
|
||||
-- tabsize
|
||||
-- vim.opt.shiftwidth = 4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue