william

Keep Calm and Markdown.

eastl best practices

In this document we discuss best practices for using EASTL. The primary emphasis is on performance with a secondary emphasis on correctness and maintainability. Some best practices apply only to some situations, and these will be pointed out as we go along. In order to be easily digestible, we present these practices as a list of items in the tone of the Effective C++ series of books.

nerdtree 自动切换到当前目录

1
2
3
set autochdir
let NERDTreeChDirMode=2
nnoremap <leader>n :NERDTree .<CR>

so that NERDTree always opens in the current folder.

  • With the 1st line, the working directory is always the one where the active buffer is located.
  • With the 2nd line, I make sure the working directory is set correctly.
  • With the 3rd line, I hit <leader>n to open NERDTree.

rss 与信息获取

RSS 提供了订阅式的信息获取机制,我们可以按照自己感兴趣的话题,订阅高质量的博客网站。对比于推送式(系统推荐),这能够拓展我们的信息边界,而不是陷入信息茧房。

0%