Commit graph

382 commits

Author SHA1 Message Date
Kevin
ba23108dbc adding the grep module, which adds the ability to grep for text from
within vim
2014-04-06 23:18:42 -04:00
Kevin
6012b3d8b9 adding the bufferline package, which shows information about the ones
that aren't currently active in the space that usually sits dark until
you enter a command
2014-04-05 03:43:23 -04:00
Kevin
b48c619ad1 committing the git plugin, vim-fugitive 2014-04-05 03:20:28 -04:00
Kevin
72f5924639 On second thought, both c syntax files together make for much better
highlighting, so I've added it back in along with some changes to the
C syntax.
2014-04-05 00:55:40 -04:00
Kevin
cfc5b07d9d committing a new package that handles up to date syntax and indentation
for 48 languages (why the last two commits were removing two plugins
that provided one language each)
2014-04-05 00:36:26 -04:00
Kevin
6c804e3565 removed the c syntax plugin 2014-04-05 00:35:07 -04:00
Kevin
7059136b7f deleted the html5 submodule as far as I can tell 2014-04-05 00:26:47 -04:00
Kevin
21a6dacbe9 Adding the webapi plugin to support loading external emmet snippets
using the built in json funcionality.
2014-04-04 23:54:36 -04:00
Kevin
9ef75137d0 Adding the tcomment plugin, which is similar to the surround plugin,
except this allows you to add and remove the comment style for the given
file format you're editing.
2014-04-04 23:46:12 -04:00
Kevin
2c4a506085 switched to a new source for vim-coloresque, possibly not the best way
it could have been done :)
2014-04-04 21:06:56 -04:00
Kevin
e3583c1404 removing vim-coloresque to replace with a more updated fork 2014-04-04 20:57:09 -04:00
Kevin
eae637b8c2 Committing upstream changes to the tagbar 2014-04-04 04:04:03 -04:00
Kevin
62847db7a5 updates for the tagbar plugin 2014-04-03 23:17:40 -04:00
Kevin
25667a2b05 Adding a new spellcheck plugin that collects all the spelling mistakes
in the document into the quickfix list when run.
2014-04-03 22:57:24 -04:00
Kevin
317f6ec5fb Updating the markdown plugin 2014-04-03 06:29:37 -04:00
Kevin
6afa665edc Tweaked the theme and syntax definitions a bit more. Configured the
file manager's theme, settings and keyboard mappings. Played around with
the keyboard mappings in general quite a bit more. All the toggles
output what they're doing now, though not their actual status in most
cases at this point, and only in normal mode. The bottom scrollbar is
now part of the gui scrollbar toggle as it turned out it can be
auto-disabled when the content isn't wide enough anyway. I realized
a bad hack to get visual paste ontop to work without replacing the paste
buffer with whatever it was pasting over meant that pasting at the start
and end of the line would leave issues with spacing, so I found a plugin
that fixed the problem the right way and hooked things up through that..
Whether syntax checking is enabled by default or needs to be toggled on
can now be set in the vimrc. Some small bugfixes and improvements were
also made.
2014-04-03 06:17:16 -04:00
Kevin
91a798c190 Pulled the latest changes to the pathogen plugin 2014-04-02 18:39:50 -04:00
Kevin
74f629ff8d Pulled the latest changes to the tagbar plugin 2014-04-02 18:39:32 -04:00
Kevin
810b94250d pulled the latest changes to the syntastic plugin 2014-04-02 18:39:19 -04:00
Kevin
d54458ae5d Pulled the latest updates to the markdown plugin 2014-04-02 18:39:02 -04:00
Kevin
03bb2ba4b8 Pulled the latest updates for the html5 plugin 2014-04-02 18:38:39 -04:00
Kevin
8a43f80747 Pulled the latest changes for the emmet plugin 2014-04-02 18:36:37 -04:00
Kevin
d5d4189e78 Undo history and syntax errors can now be toggled with F9 and ctrl-F9.
Nerdtree was dropped in favour of the much better vimfiler. The status
bar was reconfigured to display more information including the current
number of errors. A script was added that can generate a tags file from
/usr/include for more robust syntax checking in C. The update script was
updated to hopefully handle the removal of nerdtree when it updates the
submodules... Syntax highlighting has been improved in numerous
directions including more definitions as well as tweaked colours.
Keybindings were tweaked again and new ones added for the new features.
The paste function was incorrectly using buffer 0 instead of the current
buffer when in visual mode, but this is no longer the case.
Autocompletion has been improved quite a bit and the keybindings
tweaked. A bunch of general fixes and tidying up was done.
2014-04-02 11:17:12 -04:00
Kevin
f67a01fca4 Added a new plugin that provides toggles (see keyboard.vim) for the
quickfix list and location list
2014-04-02 02:09:20 -04:00
Kevin
a4a3940ef4 Added a new submodule that colours hexcode backgrounds the same as the
colours they represent for css-related formats
2014-04-01 23:32:21 -04:00
Kevin
46be09900c Added a new script that can be used to update the repo if bash is
available. Updated the README. Improved the theme by adding a bunch
of syntax highlighting definitions (mostly rooted in html, though
a bunch of other languages base their colours on it), as well as
tweaking visual selection to longer invert on the block with the cursor,
and parenthesis matching to look the same at both ends. Added a plugin
that improves the theme and adds some keyboard shortcuts to markdown,
which is what the README.md files in Github are written in. I realized
that the h,j,k,l shortcuts equivalent to the ones with arrow keys I'd
added were overwriting other shortcuts with the shift combinations, so
I removed those and the ctrl-ones for consistency. The diff shortcuts
weren't intuitive or easy on the hands, so I tried something else and
I think it works much better now (check vim/keyboard.vim). An update
script has also been added to simplify updating submodules; I'm not
completely clear as to whether following this method will properly
update the submodules in certain conditions like when one is removed,
but this should add new ones and update the existing ones after pulling
from the repo.
2014-04-01 00:03:52 -04:00
Kevin
426acb2b14 Added a writeup of features and some information about accessing them to
the README, made <backspace> delete the selection and cursor character
in visual and normal modes respectively, and set \| to add the currently
selected word to the local dictionary for spellcheck (remembering that
\\ displays a list of correct spellings)
2014-03-28 11:13:10 -04:00
Kevin
2ee0a576e3 Added <Tab> and <Shift><Tab> to normal mode, doing the same thing as in
visual, :wsudo and :esudo can now be run with :sudow and :sudoe, fixed
a few issues where gvim settings wouldn't be enabled if gvim was started
using :gui in command mode, = now does what + does so you can use - and
+ without holding shift for the + part, the ctrl/shift
up/down/left/right + h/j/k/l stuff now works the same for both using the
behaviour I suspect most people will expect from them, a 'lot' of
behaviour that didn't work in tmux should now work provided tmux is
using xterm-keys and has its $TERM set to screen*, a bunch of new
default settings have been added to settings.vim (though they're mostly
subtle or behind the scenes tweaks) and it's commented and organized
better now too, and the gvim menubar no longer appears by default (but
you can toggle it with <Ctrl><F1>)
2014-03-28 07:36:19 -04:00
Kevin
89a19086c7 Updated bundle versions 2014-03-26 01:04:01 -04:00
Kevin
47f3047a8a Tweaked the colors and styling of the cursor line/col and visual selection to better differentiate between the two. Changed the match parenthesis to standout with black text so the colour is based on the syntax instead of sometimes becoming invisble when the colours match. Changed the emmit shortcut from <Ctrl-Y> to <Ctrl-Z> for reach, and because it's easier to remember (zencoding). Tweaked some of the keyboard references so their explanation makes it easier to remember the keys. Removed the multiple cursors plugin as it rarely worked, was buggy when it did and would slow things down when accidentally triggered. Chanced read sudo from :rsudo to :esudo to match the usual load command in vim, :e. Emmit is now only initialized in css, html, php and aspx files (feel free to push additional webdev files that would be likely to have css or html). Tried to apply a more consistant style and better organization across the configs. Lowered the distance from the edge of the screen before scrolling and increased the undo history size. Removed the perl omnicompletion script because I was looking to trim things down and don't really use perl myself; my apologies if anyone does though, and you can easily get it back by cloning https://github.com/c9s/perlomni.vim.git into the bundle directory. I also remove the fugitive git plugin because while I do use git, I've just found it to be easier and more natural to run it from outside vim; fans of that one can get it back by cloning https://github.com/tpope/vim-fugitive.git into the bundle directory 2014-03-11 03:05:09 -04:00
Kevin
ad161ecf5d Updated plugins versions 2014-03-07 20:20:32 -05:00
Kevin
039b925e15 Initial commit with a relatively well configured package (config, theme and plugins), and a README to explain the details 2014-02-20 23:24:20 -05:00