mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
Moved overseer to it's own plugin file
This commit is contained in:
@@ -38,6 +38,7 @@ return {
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
},
|
||||
config = function()
|
||||
require('neodev').setup()
|
||||
require("mason").setup()
|
||||
require("mason-lspconfig").setup()
|
||||
local nvim_lsp = require("lspconfig")
|
||||
@@ -109,6 +110,9 @@ return {
|
||||
gopls = {analyses = {unusedparams = false}, staticcheck = true},
|
||||
lua_ls = {
|
||||
Lua = {
|
||||
completion = {
|
||||
callSnippet = "Replace"
|
||||
},
|
||||
workspace = { checkThirdParty = false },
|
||||
telemetry = { enable = false },
|
||||
}
|
||||
|
||||
10
nvim/m-housh/lua/user/plugin/overseer.lua
Normal file
10
nvim/m-housh/lua/user/plugin/overseer.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
'stevearc/overseer.nvim',
|
||||
dependencies = {
|
||||
'akinsho/toggleterm.nvim',
|
||||
},
|
||||
opts = {
|
||||
strategy = "toggleterm"
|
||||
},
|
||||
}
|
||||
|
||||
@@ -24,9 +24,7 @@ require("lazy").setup({
|
||||
{ import = 'user.plugin.lualine' },
|
||||
{ import = 'user.plugin.neogit' },
|
||||
{ import = 'user.plugin.neo-tree' },
|
||||
{ 'stevearc/overseer.nvim', opts = {
|
||||
strategy = "toggleterm"
|
||||
}},
|
||||
{ import = 'user.plugin.overseer' },
|
||||
{ import = 'user.plugin.swift' },
|
||||
{ import = 'user.plugin.telescope' },
|
||||
{ import = 'user.plugin.theme' },
|
||||
|
||||
Reference in New Issue
Block a user