Skip to content

Commit

Permalink
stam2
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni committed Jun 26, 2024
1 parent 325d1eb commit a28855e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 26 deletions.
2 changes: 0 additions & 2 deletions .config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"lazy.nvim": { "branch": "main", "commit": "aa1c9572aa1916e582f9b9c3d43e272b4f23b326" },
"leap.nvim": { "branch": "main", "commit": "eca8108dcd5f41fbde2a674dceb58b81ed887dc8" },
"linediff.vim": { "branch": "main", "commit": "ddae71ef5f94775d101c1c70032ebe8799f32745" },
"lsp-colors.nvim": { "branch": "main", "commit": "2bbe7541747fd339bdd8923fc45631a09bb4f1e5" },
"lspkind-nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
"lspsaga.nvim": { "branch": "main", "commit": "6f920cfabddb9b7de5a3a4d0b7cd4f0774ae23e2" },
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
Expand Down Expand Up @@ -64,7 +63,6 @@
"nvim-dap-vscode-js": { "branch": "main", "commit": "03bd29672d7fab5e515fc8469b7d07cc5994bbf6" },
"nvim-hlslens": { "branch": "main", "commit": "1db56afda3e85791a14b096e483dfda699dd9163" },
"nvim-jdtls": { "branch": "master", "commit": "40e8494e04c1bcd5dd6c0d0bc187d2d10965017d" },
"nvim-lsp-basics": { "branch": "main", "commit": "632714bd3ab355eb6e725b5a78cd8730f12d14d2" },
"nvim-lspconfig": { "branch": "master", "commit": "9c9eb07fecc578e25e28db8dc9002b43fff2ed79" },
"nvim-lua-gf": { "branch": "main", "commit": "ca712497b2bab6351518917be219e9bfd8d63e4f" },
"nvim-luaref": { "branch": "main", "commit": "9cd3ed50d5752ffd56d88dd9e395ddd3dc2c7127" },
Expand Down
8 changes: 1 addition & 7 deletions .config/nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@ local M = {
{
'folke/trouble.nvim',
opts = {},
cmd = 'TroubleToggle',
cmd = 'Trouble',
},
{
'sam4llis/nvim-lua-gf',
ft = 'lua',
},
{
'asdf.nvim',
enabled = false,
dir = '~/Repos/asdf.nvim',
opts = {},
},
{
'folke/ts-comments.nvim',
event = 'VeryLazy',
Expand Down
23 changes: 6 additions & 17 deletions .config/nvim/lua/plugins/lsp/init.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
local M = {
'neovim/nvim-lspconfig',
event = { 'BufReadPre', 'BufNewFile' },
opts = {
setup = {
docker_compose_language_service = function() end,
},
},
}

M.init = require('user.lsp.config').init
Expand All @@ -14,7 +9,6 @@ M.config = require('user.lsp.config').setup

M.dependencies = {
'nvimtools/none-ls.nvim',
'folke/lsp-colors.nvim',
{
'williamboman/mason.nvim',
cmd = 'Mason',
Expand All @@ -29,27 +23,22 @@ M.dependencies = {
'williamboman/mason-lspconfig.nvim',
{
'j-hui/fidget.nvim',
config = function()
require('fidget').setup {
progress = {
display = {
progress_icon = { pattern = 'moon', period = 1 },
},
opts = {
progress = {
display = {
progress_icon = { pattern = 'moon', period = 1 },
},
}
end,
},
},
},
{
'ramilito/winbar.nvim',
event = 'BufReadPre',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
-- your configuration comes here, for example:
icons = true,
diagnostics = false,
buf_modified = true,
-- buf_modified_symbol = '[+]',
-- or use an icon
buf_modified_symbol = '',
dir_levels = 2,
dim_inactive = {
Expand Down

0 comments on commit a28855e

Please sign in to comment.