From 0bc0240ad09341c30a920c7913a1de62c7461f2b Mon Sep 17 00:00:00 2001 From: gradkins Date: Thu, 26 Jun 2025 21:03:38 -0400 Subject: [PATCH 1/3] Working on setting up config --- init.lua | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index b98ffc61..0d558624 100644 --- a/init.lua +++ b/init.lua @@ -205,6 +205,11 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the upper win -- vim.keymap.set("n", "", "J", { desc = "Move window to the lower" }) -- vim.keymap.set("n", "", "K", { desc = "Move window to the upper" }) +-- Set Tab Size to 4 +vim.opt.tabstop = 4 +vim.opt.softtabstop = 4 +vim.opt.shiftwidth = 4 + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands` @@ -234,6 +239,9 @@ end local rtp = vim.opt.rtp rtp:prepend(lazypath) +local shiftwidth = 4 +local tabstop = 4 + -- [[ Configure and install plugins ]] -- -- To check the current status of your plugins, run @@ -283,7 +291,15 @@ require('lazy').setup({ }, }, }, - + { + 'tpope/vim-dispatch', + }, + { + 'zadirion/Unreal.nvim', + requires = { + { 'tpope/vim-dispatch' }, + }, + }, -- NOTE: Plugins can also be configured to run Lua code when they are loaded. -- -- This is often very useful to both group configuration, as well as handle @@ -561,7 +577,7 @@ require('lazy').setup({ -- Fuzzy find all the symbols in your current document. -- Symbols are things like variables, functions, types, etc. - map('gO', require('telescope.builtin').lsp_document_symbols, 'Open Document Symbols') + map('ds', require('telescope.builtin').lsp_document_symbols, 'Open Document Symbols') -- Fuzzy find all the symbols in your current workspace. -- Similar to document symbols, except searches over your entire project. @@ -671,7 +687,7 @@ require('lazy').setup({ -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { - -- clangd = {}, + clangd = {}, -- gopls = {}, -- pyright = {}, -- rust_analyzer = {}, @@ -897,6 +913,7 @@ require('lazy').setup({ vim.cmd.colorscheme 'tokyonight-night' end, }, + { 'rose-pine/neovim', name = 'rose-pine' }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, From 00c47ab9892403ac223f92186388b5170fba636a Mon Sep 17 00:00:00 2001 From: gradkins <55408513+gradkins@users.noreply.github.com> Date: Thu, 26 Jun 2025 23:42:56 -0400 Subject: [PATCH 2/3] Gotten Unreal LSP working on Mac OS --- init.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 0d558624..e1055b20 100644 --- a/init.lua +++ b/init.lua @@ -491,6 +491,8 @@ require('lazy').setup({ }, }, }, + { 'hrsh7th/nvim-cmp' }, + { 'hrsh7th/cmp-nvim-lsp' }, { -- Main LSP Configuration 'neovim/nvim-lspconfig', @@ -687,7 +689,9 @@ require('lazy').setup({ -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { - clangd = {}, + clangd = { + capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities), + }, -- gopls = {}, -- pyright = {}, -- rust_analyzer = {}, @@ -860,7 +864,7 @@ require('lazy').setup({ appearance = { -- 'mono' (default) for 'Nerd Font Mono' or 'normal' for 'Nerd Font' -- Adjusts spacing to ensure icons are aligned - nerd_font_variant = 'mono', + nerd_font_variant = 'normal', }, completion = { From fa8ebeedc7b1d2b328d298da922d80b74fe99058 Mon Sep 17 00:00:00 2001 From: gradkins Date: Fri, 27 Jun 2025 09:54:25 -0400 Subject: [PATCH 3/3] Changed default theme to Kanagawa --- init.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index e1055b20..645c4886 100644 --- a/init.lua +++ b/init.lua @@ -914,10 +914,21 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + --vim.cmd.colorscheme 'tokyonight-night' end, }, { 'rose-pine/neovim', name = 'rose-pine' }, + { + 'rebelot/kanagawa.nvim', + priority = 1000, -- Make sure to load this before all the other start plugins. + config = function() + require('kanagawa').setup {} + vim.cmd.colorscheme 'kanagawa-wave' + end, + }, + { 'Mofiqul/dracula.nvim' }, + { 'AlexvZyl/nordic.nvim' }, + { 'ribru17/bamboo.nvim' }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },