Michael-Buser-SDI / dotfiles

0 stars 0 forks source link

Communication #1

Closed monologuemind closed 1 year ago

monologuemind commented 1 year ago

return { mappings = { n = { [""] = false, ["fC"] = { function() require("telescope.builtin").grep_string() end, desc = "Search for word under cursor" }, ["fc"] = { function() require("telescope.builtin").current_buffer_fuzzy_find() end, desc = "Search current buffer" }, [""] = { function() require("astronvim.utils.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end, desc = "Next buffer", }, [""] = { function() require("astronvim.utils.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end, desc = "Previous buffer", }, } },

colorscheme = "synthwave84", plugins = { -- { -- "folke/tokyonight.nvim", -- name = "tokyonight", -- config = function() -- require("tokyonight").setup { -- style = "moon", -- } -- end, -- }, -- No Svelte support in LSP { "lunarvim/synthwave84.nvim", name = "synthwave84", config = function() require("synthwave84").setup {} end, }, -- { -- "Mofiqul/dracula.nvim", -- name = "dracula", -- config = function() -- require("dracula").setup {} -- end -- }, }, }

Michael-Buser-SDI commented 1 year ago

done