From 567d1f7108d316360bae609edcb88a502a6458d3 Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Tue, 1 Nov 2016 20:25:58 +1300 Subject: [PATCH] Update config - weechat/zsh/nvim --- nvim/.config/nvim/init.vim | 6 ++++-- weechat/.config/weechat/aspell.conf | 2 +- weechat/.config/weechat/weechat.conf | 12 ++++++------ zsh/.zshrc | 2 +- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 1463c96..ce7184c 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -8,6 +8,7 @@ Plug 'airblade/vim-gitgutter' Plug 'tpope/vim-sensible' Plug 'chrisbra/sudoedit.vim' Plug 'scrooloose/nerdtree' +Plug 'scrooloose/nerdcommenter' call plug#end() @@ -37,6 +38,9 @@ colorscheme monokai syntax enable let g:load_doxygen_syntax=1 +" enable filetype plugins +filetype plugin on + "use system clipboard set clipboard+=unnamedplus @@ -45,5 +49,3 @@ noremap noremap noremap noremap - -" TODO: commenting plugin -> commentary/tcomment/nerdcommenter diff --git a/weechat/.config/weechat/aspell.conf b/weechat/.config/weechat/aspell.conf index 26df178..99711d9 100644 --- a/weechat/.config/weechat/aspell.conf +++ b/weechat/.config/weechat/aspell.conf @@ -12,7 +12,7 @@ default_dict = "en_GB" during_search = off enabled = on real_time = off -suggestions = -1 +suggestions = 5 word_min_length = 2 [dict] diff --git a/weechat/.config/weechat/weechat.conf b/weechat/.config/weechat/weechat.conf index e46175b..993e1e7 100644 --- a/weechat/.config/weechat/weechat.conf +++ b/weechat/.config/weechat/weechat.conf @@ -103,7 +103,7 @@ prefix_join = "◥" prefix_network = "--" prefix_quit = "◣" prefix_same_nick = "↪" -prefix_suffix = "|" +prefix_suffix = "╡" quote_nick_prefix = "<" quote_nick_suffix = ">" quote_time_format = "%H:%M:%S" @@ -159,7 +159,7 @@ chat_prefix_join = lightgreen chat_prefix_more = lightmagenta chat_prefix_network = magenta chat_prefix_quit = lightred -chat_prefix_suffix = green +chat_prefix_suffix = 4 chat_read_marker = magenta chat_read_marker_bg = default chat_server = brown @@ -238,7 +238,7 @@ buffers.color_fg = default buffers.conditions = "" buffers.filling_left_right = vertical buffers.filling_top_bottom = columns_vertical -buffers.hidden = on +buffers.hidden = off buffers.items = "buffers" buffers.position = top buffers.priority = 0 @@ -288,21 +288,21 @@ nicklist.separator = off nicklist.size = 0 nicklist.size_max = 0 nicklist.type = window -status.color_bg = darkgray +status.color_bg = 240 status.color_delim = cyan status.color_fg = default status.conditions = "" status.filling_left_right = vertical status.filling_top_bottom = horizontal status.hidden = off -status.items = "[buffer_plugin],buffer_name,scroll,[hotlist],completion" +status.items = "[buffer_plugin],buffer_name,scroll,completion, [aspell_suggest]" status.position = bottom status.priority = 500 status.separator = off status.size = 1 status.size_max = 0 status.type = window -title.color_bg = darkgray +title.color_bg = 240 title.color_delim = cyan title.color_fg = default title.conditions = "" diff --git a/zsh/.zshrc b/zsh/.zshrc index bc82063..1c99068 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -9,7 +9,7 @@ DISABLE_UPDATE_PROMPT=true DISABLE_AUTO_UPDATE=true # Plugins -plugins=(archlinux common-aliases git sudo ssh-agent rust) +plugins=(archlinux common-aliases git sudo ssh-agent rust colored-man-pages) # ZSH-Completions plugins+=(zsh-completions)