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