diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 18:45:22 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 18:45:22 +0100 |
commit | fefba1ba1f2d2bc919e40b1fcb2f520620ac8b07 (patch) | |
tree | 19be30ec338c8a28eb1ae945a8b1a80257e589bd /Common | |
parent | 8f23f5ead2d6919ffdcdc3110c6855464d8d6384 (diff) | |
download | dotfiles-fefba1ba1f2d2bc919e40b1fcb2f520620ac8b07.tar.gz dotfiles-fefba1ba1f2d2bc919e40b1fcb2f520620ac8b07.zip |
Remove some plugins
Diffstat (limited to 'Common')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 96 |
1 files changed, 27 insertions, 69 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index e8b1409..6bdaba5 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -16,8 +16,6 @@ vim.cmd([[ return require('packer').startup(function(use) -- Packer itself :) use 'wbthomason/packer.nvim' - -- targets (extends vim's targets, allowing things like multiline select inside backticks) - use 'wellle/targets.vim'; -- GitSigns use { @@ -28,29 +26,6 @@ return require('packer').startup(function(use) end, } - -- Lualine (Pretty statusbar and titlebar) - use { - 'nvim-lualine/lualine.nvim', - requires = { 'kyazdani42/nvim-web-devicons', opt = true }, - config = function() - require('lualine').setup { - options = { - theme = 'Tomorrow', - component_separators = '', - section_separators = '' - }, - sections = { - lualine_a = {'mode'}, - lualine_x = {'filetype'}, - lualine_y = {} - }, - -- tabline = { - -- lualine_z = {'tabs'} - -- } - } - end, - } - -- nvim-tree use { 'kyazdani42/nvim-tree.lua', @@ -62,17 +37,6 @@ return require('packer').startup(function(use) end, } - -- TagBar - use { - 'preservim/tagbar', - config = function() - map("n", "<F2>", ":TagbarToggle<cr>", silentnoremap) - end, - } - - -- Vim tmux navigator - use 'christoomey/vim-tmux-navigator' - -- fzf (Fuzzy finder for various things) use { 'junegunn/fzf.vim', @@ -106,7 +70,6 @@ return require('packer').startup(function(use) end, } - -- Tpope plugins :) -- vim-dadbob (run sql directly) use { 'tpope/vim-dadbod', @@ -129,16 +92,6 @@ return require('packer').startup(function(use) ]] end, } - -- vim-fugitive (Git commands) - use { 'tpope/vim-fugitive' } - -- Surround - use { 'tpope/vim-surround' } - - -- Tree-sitter-mysql - -- use { 'PatrickFeiring/tree-sitter-sql' } - - -- terryma/vim-multiple-cursors - -- preservim/nerdcommenter -- Lsp things use { @@ -161,33 +114,13 @@ return require('packer').startup(function(use) use 'hrsh7th/cmp-path' use 'hrsh7th/vim-vsnip' - - -- Goyo :) - use { - 'junegunn/goyo.vim' - } - use { 'smithbm2316/centerpad.nvim' } - - -- Color picker - use { - "ziontee113/color-picker.nvim", - config = function() - require("color-picker") - end, - } - - -- Ledger - use { - 'ledger/vim-ledger' - } - -- VimWiki stuff use { 'vimwiki/vimwiki', config = function () vim.g.vimwiki_list = { { - path = '~/Nextcloud/2-Områder/204-profesjonelt/204.06-Infomedia/204.06.AA-wiki', + path = '~/Nextcloud/2-Områder/204-profesjonelt/204.06-infomedia/204.06.AA-wiki', syntax = 'markdown', ext = 'md', name = 'I45', @@ -248,9 +181,34 @@ return require('packer').startup(function(use) end } - -- packer.nvim + --use { 'PatrickFeiring/tree-sitter-sql' } use 'evanleck/vim-svelte' use 'pangloss/vim-javascript' + use 'ledger/vim-ledger' + + -- Goyo :) + -- use { + -- 'junegunn/goyo.vim' + -- } + -- use { 'smithbm2316/centerpad.nvim' } + + -- Color picker + use { + "ziontee113/color-picker.nvim", + config = function() + require("color-picker") + end, + } + -- TagBar + -- use { + -- 'preservim/tagbar', + -- config = function() + -- map("n", "<F2>", ":TagbarToggle<cr>", silentnoremap) + -- end, + -- } + -- Vim tmux navigator + -- use 'christoomey/vim-tmux-navigator' + -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins |