diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 58cccbc..4f5420f 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua | |||
@@ -6,7 +6,7 @@ | |||
6 | -- └───────────────────┘ | 6 | -- └───────────────────┘ |
7 | 7 | ||
8 | return require('packer').startup(function() | 8 | return require('packer').startup(function() |
9 | -- Packer can manage itself | 9 | -- packer can manage itself |
10 | use 'wbthomason/packer.nvim' | 10 | use 'wbthomason/packer.nvim' |
11 | 11 | ||
12 | -- latex suite | 12 | -- latex suite |
@@ -22,8 +22,6 @@ return require('packer').startup(function() | |||
22 | use 'jpalardy/vim-slime' | 22 | use 'jpalardy/vim-slime' |
23 | -- snippets to expand | 23 | -- snippets to expand |
24 | use {'SirVer/ultisnips', 'honza/vim-snippets'} | 24 | use {'SirVer/ultisnips', 'honza/vim-snippets'} |
25 | -- Highlight the yanked region | ||
26 | use 'machakann/vim-highlightedyank' | ||
27 | 25 | ||
28 | -- auto pair plugin, people hate these | 26 | -- auto pair plugin, people hate these |
29 | use 'tmsvg/pear-tree' | 27 | use 'tmsvg/pear-tree' |
@@ -50,13 +48,13 @@ return require('packer').startup(function() | |||
50 | 48 | ||
51 | -- displays tags ordered by scope | 49 | -- displays tags ordered by scope |
52 | use 'majutsushi/tagbar' | 50 | use 'majutsushi/tagbar' |
53 | -- Undo tree | 51 | -- undo tree |
54 | use { | 52 | use { |
55 | 'mbbill/undotree', | 53 | 'mbbill/undotree', |
56 | cmd = 'UndotreeToggle', | 54 | cmd = 'UndotreeToggle', |
57 | config = [[vim.g.undotree_SetFocusWhenToggle = 1]], | 55 | config = [[vim.g.undotree_SetFocusWhenToggle = 1]], |
58 | } | 56 | } |
59 | -- Highlight colors | 57 | -- highlight colors |
60 | use { | 58 | use { |
61 | 'norcalli/nvim-colorizer.lua', | 59 | 'norcalli/nvim-colorizer.lua', |
62 | ft = { 'css', 'javascript', 'vim', 'html' }, | 60 | ft = { 'css', 'javascript', 'vim', 'html' }, |
@@ -70,7 +68,7 @@ return require('packer').startup(function() | |||
70 | 'svermeulen/vim-yoink' | 68 | 'svermeulen/vim-yoink' |
71 | } | 69 | } |
72 | 70 | ||
73 | -- Personal wiki | 71 | -- personal wiki |
74 | use 'vimwiki/vimwiki' | 72 | use 'vimwiki/vimwiki' |
75 | -- centers the writing | 73 | -- centers the writing |
76 | use 'junegunn/goyo.vim' | 74 | use 'junegunn/goyo.vim' |
@@ -78,7 +76,7 @@ return require('packer').startup(function() | |||
78 | use 'junegunn/limelight.vim' | 76 | use 'junegunn/limelight.vim' |
79 | -- change ASCII text to Turkish text | 77 | -- change ASCII text to Turkish text |
80 | use 'yigitsever/turkish-deasciifier.vim' | 78 | use 'yigitsever/turkish-deasciifier.vim' |
81 | 79 | ||
82 | -- text alignment \w :Tab | 80 | -- text alignment \w :Tab |
83 | use 'godlygeek/tabular' | 81 | use 'godlygeek/tabular' |
84 | -- move selections up and down with alt+[j,k] | 82 | -- move selections up and down with alt+[j,k] |