mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 14:44:59 +01:00
Add comments to nvim and update tmux conf
This commit is contained in:
parent
834417f864
commit
ac6d86d869
|
@ -72,6 +72,14 @@ require("packer").startup(function()
|
|||
end
|
||||
}
|
||||
|
||||
-- Comments
|
||||
use {
|
||||
'numToStr/Comment.nvim',
|
||||
config = function()
|
||||
require('Comment').setup()
|
||||
end
|
||||
}
|
||||
|
||||
-- Automatically set up configuration after cloning packer.nvim
|
||||
if packer_bootstrap then
|
||||
require("packer").sync()
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
set -g default-terminal "xterm-256color"
|
||||
set -g default-terminal "tmux-256color"
|
||||
set-option -sa terminal-overrides ',xterm-256color:RGB'
|
||||
set -g mouse on
|
||||
|
||||
# remap prefix from 'C-b' to 'C-a'
|
||||
|
|
Loading…
Reference in a new issue