diff options
author | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-04-16 22:52:22 +0200 |
---|---|---|
committer | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-04-16 22:52:22 +0200 |
commit | 538af77cf241e88df53553c6053dd6337a7ab987 (patch) | |
tree | 0efe6dc4e4f2df0472495f5b1c835e5c3ef4791f | |
parent | a88d64dfa826d8dced22815e57652fff49039b94 (diff) |
Readme update
-rw-r--r-- | README.md | 47 | ||||
-rw-r--r-- | lua/user/nvimtree.lua | 1 |
2 files changed, 35 insertions, 13 deletions
@@ -1,15 +1,38 @@ -# Neovim configuration +``` + ____ ___ +/\ _`\ /\_ \ __ +\ \ \L\_\_ __ __ ___ ___ __ \//\ \ __ __ /\_\ ___ ___ + \ \ _\/\`'__\/'__`\ /' __` __`\ /'__`\ \ \ \ _______/\ \/\ \\/\ \ /' __` __`\ + \ \ \/\ \ \//\ \L\.\_/\ \/\ \/\ \/\ \L\.\_ \_\ \_/\______\ \ \_/ |\ \ \/\ \/\ \/\ \ + \ \_\ \ \_\\ \__/.\_\ \_\ \_\ \_\ \__/.\_\/\____\/______/\ \___/ \ \_\ \_\ \_\ \_\ + \/_/ \/_/ \/__/\/_/\/_/\/_/\/_/\/__/\/_/\/____/ \/__/ \/_/\/_/\/_/\/_/ + +``` + +# Framal-vim -- my Neovim configuration My Neovim configuration, highly based on an excellent tutorial series by -[chris@machine](https://www.youtube.com/watch?v=ctH-a-1eUME&list=PLhoH5vyxr6Qq41NFL4GvhFp-WLd5xzIzZ&ab_channel=chris%40machine). - -Plugins I use: -- vim-airline -- nerdtree -- awesome-vim-colorschemes -- nvim-cmp -- nvim-lspconfig -- nvim-lsp-installer -- cmp_luasnip -- telescope +[chris@machine](https://www.youtube.com/watch?v=ctH-a-1eUME&list=PLhoH5vyxr6Qq41NFL4GvhFp-WLd5xzIzZ&ab_channel=chris%40machine) +and [Lunar vim](https://github.com/LunarVim/LunarVim) + +I manager plugins with packer. Plugins I use: +- vim-airline, +- nvim-tree , +- nvim-cmp with additions, +- cmp_luasnip, +- nvim-lspconfig, +- nvim-lsp-installer, +- telescope and ui-select extension, +- alpha, +- treesitter, +- editorconfig-vim (great for small project-specific configs), +- lunarvim/colorschemes, `darkplus` atm, +- vim-super-retab, +- project, +- impatient, +- neoscroll (this is weird though), +- nvim-ts-context-commentstring with Comment, +- vim-bbye, +- bufferline, +- and maybe some other minor plugins. diff --git a/lua/user/nvimtree.lua b/lua/user/nvimtree.lua index d6ac3ce..a9c46c9 100644 --- a/lua/user/nvimtree.lua +++ b/lua/user/nvimtree.lua @@ -39,7 +39,6 @@ nvim_tree.setup { ignore_ft_on_setup = { "alpha", }, - auto_close = true, open_on_tab = false, hijack_cursor = false, update_cwd = true, |