diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-11-20 22:24:07 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-11-20 22:24:07 +0100 |
| commit | f421c9f95d74f05a35457fdfce4fd95565877f12 (patch) | |
| tree | db6e2e0eee845eb60ab458c771b341a265b01266 /config/nvim/lua | |
| parent | 95b912a57f517f579a625f8feaeb193a8abce968 (diff) | |
| download | dotfiles-f421c9f95d74f05a35457fdfce4fd95565877f12.tar.gz dotfiles-f421c9f95d74f05a35457fdfce4fd95565877f12.tar.bz2 dotfiles-f421c9f95d74f05a35457fdfce4fd95565877f12.zip | |
Updated project-open to use $TERMINAL and changing the variable to alacritty
Diffstat (limited to 'config/nvim/lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 1d5d0b4..05712a6 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -1,4 +1,4 @@ -vim.cmd [[packadd packer.nvim]] +vim.cmd [[ packadd packer.nvim ]] return require('packer').startup(function() use 'wbthomason/packer.nvim' -- plugin manager (can manage itself) @@ -30,4 +30,17 @@ return require('packer').startup(function() {'kyazdani42/nvim-web-devicons', opt = true}, } } + -- todos,fix,etc.. highlight and list + use { + 'folke/todo-comments.nvim', + requires = 'nvim-lua/plenary.nvim', + config = function() + print("plugins") + require('todo-comments').setup { + } + end + } end) + +-- TODO: bonjour +-- FIX: bonjour |
