this repo has no description
1
fork

Configure Feed

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

fortran lsp checker and dependancy altering

+15 -5
+2 -1
lua/technoduck/lazy_config.lua
··· 13 13 14 14 require("lazy").setup({ 15 15 spec = "technoduck.lazy_plugins", 16 - change_detection = { notify = false } 16 + change_detection = { notify = false }, 17 + rocks = {enabled = false} 17 18 }) 18 19 19 20 --[[
+3 -1
lua/technoduck/lazy_plugins/harpoon.lua
··· 1 1 return { 2 2 'theprimeagen/harpoon', 3 3 branch = "harpoon2", 4 - dependencies = { "nvim-lua/plenary.nvim" }, 4 + dependencies = { 5 + "nvim-lua/plenary.nvim", 6 + }, 5 7 config = function() 6 8 local harpoon = require("harpoon") 7 9 harpoon:setup()
+10 -3
lua/technoduck/lazy_plugins/lsp.lua
··· 28 28 }) 29 29 require("mason-lspconfig").setup({ 30 30 ensure_installed = { 31 - 'clangd', 32 31 'lua_ls', 33 - 'nil_ls', 34 32 'rust_analyzer', 35 33 'jedi_language_server', 36 - 'texlab', 34 + 'fortls', 37 35 }, 38 36 handlers = { 39 37 function(server_name) ··· 46 44 47 45 require("lspconfig")[server_name].setup { 48 46 capabilities = capabilities 47 + } 48 + require'lspconfig'.fortls.setup{ 49 + cmd = { 50 + 'fortls', 51 + '--hover_signature', 52 + '--hover_language=fortran', 53 + '--use_signature_help', 54 + '--lowercase_intrinsics' 55 + }, 49 56 } 50 57 require("lspconfig").lua_ls.setup({ 51 58 settings = {