diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-05-28 23:21:22 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-05-28 23:21:22 +0200 |
commit | 1f5856a66791620fcb665f839619fa43e68063e1 (patch) | |
tree | f8e2de73746385133878a11fd1e8098689e089ca /Common/nvim/lua/plugins.lua | |
parent | 0d41b6ec30351451452aec6ced80734bfb435845 (diff) | |
download | dotfiles-1f5856a66791620fcb665f839619fa43e68063e1.tar.gz dotfiles-1f5856a66791620fcb665f839619fa43e68063e1.zip |
Bw
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 1faf832..829ca15 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -17,12 +17,7 @@ return require('packer').startup(function(use) -- Packer itself :) use 'wbthomason/packer.nvim' - -- Git plugins - use { - 'tpope/vim-fugitive', - } - - -- fzf (Fuzzy finder for various things) + use 'tpope/vim-fugitive' use { 'junegunn/fzf.vim', requires = { 'junegunn/fzf', 'kyazdani42/nvim-web-devicons' }, @@ -70,6 +65,9 @@ return require('packer').startup(function(use) ensure_installed = { "c", "cpp", "python", "php", "java", "lua", "vim", "vimdoc", "query", "php", "sql" }, sync_install = false, auto_install = true, + highlight = { + enable = false, + }, --ignore_install = { "javascript" }, } end @@ -94,11 +92,6 @@ return require('packer').startup(function(use) end, } - -- Useful for wide screens - use { - 'junegunn/goyo.vim' - } - -- VimWiki stuff use { 'vimwiki/vimwiki', |