Personal dotfiles.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: updated nvim config with go

+7 -1
+1 -1
nvim/lazy-lock.json
··· 9 9 "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, 10 10 "neo-tree.nvim": { "branch": "v3.x", "commit": "f3df514fff2bdd4318127c40470984137f87b62e" }, 11 11 "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, 12 - "nvim-lspconfig": { "branch": "master", "commit": "59cd07d8df2fefde32556268b8d52606a32152a1" }, 12 + "nvim-lspconfig": { "branch": "master", "commit": "66fd02ad1c7ea31616d3ca678fa04e6d0b360824" }, 13 13 "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, 14 14 "nvim-web-devicons": { "branch": "master", "commit": "746ffbb17975ebd6c40142362eee1b0249969c5c" }, 15 15 "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
+3
nvim/lua/plugins/lspconfig.lua
··· 54 54 vim.lsp.config("ruff", coq.lsp_ensure_capabilities()) 55 55 vim.lsp.enable("ruff") 56 56 57 + -- enable go server 58 + vim.lsp.enable("gopls") 59 + 57 60 end, 58 61 }
+2
nvim/lua/plugins/treesitter.lua
··· 5 5 ensure_installed = { 6 6 "c", 7 7 "lua", 8 + "go", 9 + "rust", 8 10 "python", 9 11 "vim", 10 12 "vimdoc",
+1
zshrc
··· 41 41 42 42 # golang 43 43 export PATH=$PATH:/usr/local/go/bin 44 + export PATH=$HOME/go/bin:$PATH