From e5cd66f7a749e88faee4fc1f3c844a09d87a1c62 Mon Sep 17 00:00:00 2001 From: moonleay Date: Mon, 20 Jan 2025 12:26:02 +0100 Subject: [PATCH] big bang --- init.lua | 1 + lazy-lock.json | 14 +++++++ lua/moonleay/colors.lua | 4 ++ lua/moonleay/discord.lua | 25 ++++++++++++ lua/moonleay/init.lua | 8 ++++ lua/moonleay/lazy.lua | 40 ++++++++++++++++++ lua/moonleay/lsp.lua | 88 ++++++++++++++++++++++++++++++++++++++++ lua/moonleay/lualine.lua | 42 +++++++++++++++++++ lua/moonleay/remap.lua | 22 ++++++++++ lua/moonleay/scope.lua | 5 +++ lua/moonleay/set.lua | 27 ++++++++++++ 11 files changed, 276 insertions(+) create mode 100644 init.lua create mode 100644 lazy-lock.json create mode 100644 lua/moonleay/colors.lua create mode 100644 lua/moonleay/discord.lua create mode 100644 lua/moonleay/init.lua create mode 100644 lua/moonleay/lazy.lua create mode 100644 lua/moonleay/lsp.lua create mode 100644 lua/moonleay/lualine.lua create mode 100644 lua/moonleay/remap.lua create mode 100644 lua/moonleay/scope.lua create mode 100644 lua/moonleay/set.lua diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..8f6dc7b --- /dev/null +++ b/init.lua @@ -0,0 +1 @@ +require("moonleay") diff --git a/lazy-lock.json b/lazy-lock.json new file mode 100644 index 0000000..39bfb4f --- /dev/null +++ b/lazy-lock.json @@ -0,0 +1,14 @@ +{ + "catppuccin": { "branch": "main", "commit": "f67b886d65a029f12ffa298701fb8f1efd89295d" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "99290b3ec1322070bcfb9e846450a46f6efa50f0" }, + "discord.nvim": { "branch": "main", "commit": "32d112aa0401d797790ac41334e93c0860319adf" }, + "lazy.nvim": { "branch": "main", "commit": "d8f26efd456190241afd1b0f5235fe6fdba13d4a" }, + "lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "e942edf5c85b6a2ab74059ea566cac5b3e1514a4" }, + "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, + "nvim-cmp": { "branch": "main", "commit": "8c82d0bd31299dbff7f8e780f5e06d2283de9678" }, + "nvim-lspconfig": { "branch": "master", "commit": "339ccc81e08793c3af9b83882a6ebd90c9cc0d3b" }, + "nvim-web-devicons": { "branch": "master", "commit": "aafa5c187a15701a7299a392b907ec15d9a7075f" }, + "plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" }, + "telescope.nvim": { "branch": "master", "commit": "415af52339215926d705cccc08145f3782c4d132" } +} diff --git a/lua/moonleay/colors.lua b/lua/moonleay/colors.lua new file mode 100644 index 0000000..d6f3cff --- /dev/null +++ b/lua/moonleay/colors.lua @@ -0,0 +1,4 @@ +vim.cmd.colorscheme "catppuccin-mocha" +-- vim.cmd.colorscheme "solarized-osaka" + + diff --git a/lua/moonleay/discord.lua b/lua/moonleay/discord.lua new file mode 100644 index 0000000..406482b --- /dev/null +++ b/lua/moonleay/discord.lua @@ -0,0 +1,25 @@ +-- The setup config table shows all available config options with their default values: +require("discord").setup({ + -- General options + auto_connect = false, -- Automatically connect to Discord RPC + logo = "auto", -- "auto" or url + logo_tooltip = nil, -- nil or string + main_image = "language", -- "language" or "logo" + client_id = "1233867420330889286", -- Use your own Discord application client id (not recommended) + log_level = nil, -- Log messages at or above this level (one of the following: "debug", "info", "warn", "error") + debounce_timeout = 10, -- Number of seconds to debounce events (or calls to `:lua package.loaded.presence:update(, true)`) + blacklist = {}, -- A list of strings or Lua patterns that disable Rich Presence if the current file name, path, or workspace matches + file_assets = {}, -- Custom file asset definitions keyed by file names and extensions (see default config at `lua/presence/file_assets.lua` for reference) + show_time = true, -- Show the timer + global_timer = true, -- if set false, timer will be reset on aucmds + + -- Rich Presence text options + editing_text = "Editing %s", -- Format string rendered when an editable file is loaded in the buffer (either string or function(filename: string): string) + file_explorer_text = "Browsing %s", -- Format string rendered when browsing a file explorer (either string or function(file_explorer_name: string): string) + git_commit_text = "Committing changes", -- Format string rendered when committing changes in git (either string or function(filename: string): string) + plugin_manager_text = "Managing plugins", -- Format string rendered when managing plugins (either string or function(plugin_manager_name: string): string) + reading_text = "Reading %s", -- Format string rendered when a read-only or unmodifiable file is loaded in the buffer (either string or function(filename: string): string) + workspace_text = "Working on %s", -- Format string rendered when in a git repository (either string or function(project_name: string|nil, filename: string): string) + line_number_text = "Line %s out of %s", -- Format string rendered when `enable_line_number` is set to true (either string or function(line_number: number, line_count: number): string) + terminal_text = "Using Terminal", -- Format string rendered when in terminal mode. +}) diff --git a/lua/moonleay/init.lua b/lua/moonleay/init.lua new file mode 100644 index 0000000..c8933b3 --- /dev/null +++ b/lua/moonleay/init.lua @@ -0,0 +1,8 @@ +require("moonleay.lazy") +require("moonleay.lsp") +require("moonleay.colors") +require("moonleay.set") +require("moonleay.remap") +require("moonleay.discord") +require("moonleay.lualine") +require("moonleay.scope") diff --git a/lua/moonleay/lazy.lua b/lua/moonleay/lazy.lua new file mode 100644 index 0000000..86fcbaf --- /dev/null +++ b/lua/moonleay/lazy.lua @@ -0,0 +1,40 @@ +local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim' + +-- Auto-install lazy.nvim if not present +if not vim.uv.fs_stat(lazypath) then + print('Installing lazy.nvim....') + vim.fn.system({ + 'git', + 'clone', + '--filter=blob:none', + 'https://github.com/folke/lazy.nvim.git', + '--branch=stable', -- latest stable release + lazypath, + }) + print('Done.') +end + +vim.opt.rtp:prepend(lazypath) + + +require('lazy').setup({ + -- list of plugins here + { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, + {'williamboman/mason.nvim'}, + {'williamboman/mason-lspconfig.nvim'}, + {'neovim/nvim-lspconfig'}, + {'hrsh7th/cmp-nvim-lsp'}, + {'hrsh7th/nvim-cmp'}, + { + 'mistweaverco/discord.nvim', + event = "VeryLazy" + }, + { + 'nvim-lualine/lualine.nvim', + dependencies = { 'nvim-tree/nvim-web-devicons' } + }, + { + 'nvim-telescope/telescope.nvim', + dependencies = { 'nvim-lua/plenary.nvim' } + }, +}) diff --git a/lua/moonleay/lsp.lua b/lua/moonleay/lsp.lua new file mode 100644 index 0000000..3133277 --- /dev/null +++ b/lua/moonleay/lsp.lua @@ -0,0 +1,88 @@ +-- Add cmp_nvim_lsp capabilities settings to lspconfig +-- This should be executed before you configure any language server +local lspconfig_defaults = require('lspconfig').util.default_config +lspconfig_defaults.capabilities = vim.tbl_deep_extend( + 'force', + lspconfig_defaults.capabilities, + require('cmp_nvim_lsp').default_capabilities() +) + + +-- This is where you enable features that only work +-- if there is a language server active in the file +vim.api.nvim_create_autocmd('LspAttach', { + desc = 'LSP actions', + callback = function(event) + local opts = {buffer = event.buf} + + vim.keymap.set('n', 'K', 'lua vim.lsp.buf.hover()', opts) + vim.keymap.set('n', 'gd', 'lua vim.lsp.buf.definition()', opts) + vim.keymap.set('n', 'gD', 'lua vim.lsp.buf.declaration()', opts) + vim.keymap.set('n', 'gi', 'lua vim.lsp.buf.implementation()', opts) + vim.keymap.set('n', 'go', 'lua vim.lsp.buf.type_definition()', opts) + vim.keymap.set('n', 'gr', 'lua vim.lsp.buf.references()', opts) + vim.keymap.set('n', 'gs', 'lua vim.lsp.buf.signature_help()', opts) + vim.keymap.set('n', '', 'lua vim.lsp.buf.rename()', opts) + vim.keymap.set({'n', 'x'}, '', 'lua vim.lsp.buf.format({async = true})', opts) + vim.keymap.set('n', '', 'lua vim.lsp.buf.code_action()', opts) + end, +}) + +require('lspconfig').rust_analyzer.setup({}) +require("lspconfig").clangd.setup({ + settings = { + clangd = { + InlayHints = { + Designators = true, + Enabled = true, + ParameterNames = true, + DeducedTypes = true, + }, + fallbackFlags = { "-std=c++14" }, + }, + } +}) + +require('lspconfig').bashls.setup({}) +require('lspconfig').neocmake.setup({}) + + +require('mason').setup({}) +require('mason-lspconfig').setup({ + handlers = { + function(server_name) + require('lspconfig')[server_name].setup({}) + end, + }, +}) + + + + +local cmp = require('cmp') + +cmp.setup({ + sources = { + {name = 'nvim_lsp'}, + }, + mapping = cmp.mapping.preset.insert({ + -- Navigate between completion items + [''] = cmp.mapping.select_prev_item({behavior = 'select'}), + [''] = cmp.mapping.select_next_item({behavior = 'select'}), + + -- `Enter` key to confirm completion + [''] = cmp.mapping.confirm({select = false}), + + -- Ctrl+Space to trigger completion menu + [''] = cmp.mapping.complete(), + + -- Scroll up and down in the completion documentation + [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(4), + }), + snippet = { + expand = function(args) + vim.snippet.expand(args.body) + end, + }, +}) diff --git a/lua/moonleay/lualine.lua b/lua/moonleay/lualine.lua new file mode 100644 index 0000000..df327d5 --- /dev/null +++ b/lua/moonleay/lualine.lua @@ -0,0 +1,42 @@ +require('lualine').setup { + options = { + icons_enabled = true, + theme = 'auto', + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + disabled_filetypes = { + statusline = {}, + winbar = {}, + }, + ignore_focus = {}, + always_divide_middle = true, + always_show_tabline = true, + globalstatus = false, + refresh = { + statusline = 100, + tabline = 100, + winbar = 100, + } + }, + sections = { + lualine_a = {'mode'}, + lualine_b = {'branch', 'diff', 'diagnostics'}, + lualine_c = {'filename'}, + lualine_x = {'encoding', 'fileformat', 'filetype'}, + lualine_y = {'progress'}, + lualine_z = {'location'} + }, + inactive_sections = { + lualine_a = {}, + lualine_b = {}, + lualine_c = {'filename'}, + lualine_x = {'location'}, + lualine_y = {}, + lualine_z = {} + }, + tabline = {}, + winbar = {}, + inactive_winbar = {}, + extensions = {} +} + diff --git a/lua/moonleay/remap.lua b/lua/moonleay/remap.lua new file mode 100644 index 0000000..8992cdf --- /dev/null +++ b/lua/moonleay/remap.lua @@ -0,0 +1,22 @@ +vim.keymap.set("n", "", vim.cmd.Ex) +vim.keymap.set("n", "", vim.cmd.w) +vim.keymap.set("i", "", vim.cmd.w) + +vim.keymap.set("v", "J", ">+1gv=gv") +vim.keymap.set("v", "K", "<-2gv=gv") + +vim.keymap.set("i", "", "") + + +local opts = { noremap=true, silent=true } + +local function quickfix() + vim.lsp.buf.code_action({ + filter = function(a) return a.isPreferred end, + apply = true + }) +end + + +vim.keymap.set('n', 'C-h', quickfix, opts) +vim.g.mapleader = " " diff --git a/lua/moonleay/scope.lua b/lua/moonleay/scope.lua new file mode 100644 index 0000000..af04d31 --- /dev/null +++ b/lua/moonleay/scope.lua @@ -0,0 +1,5 @@ +local builtin = require('telescope.builtin') +vim.keymap.set('n', 'ff', builtin.find_files, { desc = 'Telescope find files' }) +vim.keymap.set('n', 'fg', builtin.live_grep, { desc = 'Telescope live grep' }) +vim.keymap.set('n', 'fb', builtin.buffers, { desc = 'Telescope buffers' }) +vim.keymap.set('n', 'fh', builtin.help_tags, { desc = 'Telescope help tags' }) diff --git a/lua/moonleay/set.lua b/lua/moonleay/set.lua new file mode 100644 index 0000000..5fce8b3 --- /dev/null +++ b/lua/moonleay/set.lua @@ -0,0 +1,27 @@ +vim.opt.nu = true +vim.opt.relativenumber = true + +vim.opt.tabstop = 4 +vim.opt.softtabstop = 4 +vim.opt.shiftwidth = 4 +vim.opt.expandtab = true + +vim.opt.smartindent = true + +vim.opt.swapfile = false +vim.opt.backup = false +vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" + + +vim.opt.incsearch = true + +vim.opt.termguicolors = true + +vim.opt.scrolloff = 8 +vim.opt.signcolumn = "yes" +vim.opt.isfname:append("@-@") + +vim.opt.updatetime = 50 + +--vim.opt.colorcolumn = "80" +