diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 21:45:39 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-07 21:45:39 +0100 |
commit | 6b0bdfa63bdfb1464db36162390a35da9792cb14 (patch) | |
tree | d86662d0ffe658be6e136c4e6214ef0f5da8fa07 /Common | |
parent | fefba1ba1f2d2bc919e40b1fcb2f520620ac8b07 (diff) | |
download | dotfiles-6b0bdfa63bdfb1464db36162390a35da9792cb14.tar.gz dotfiles-6b0bdfa63bdfb1464db36162390a35da9792cb14.zip |
Remove some plugins
Diffstat (limited to 'Common')
-rwxr-xr-x | Common/nvim/lua/basic.lua | 13 | ||||
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 17 |
2 files changed, 14 insertions, 16 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua index ca59d1c..ab3a9c7 100755 --- a/Common/nvim/lua/basic.lua +++ b/Common/nvim/lua/basic.lua @@ -24,9 +24,20 @@ vim.api.nvim_create_user_command( ) -- Disable the auto line wrap --- vim.cmd [[ set formatoptions-=t ]] vim.opt.formatoptions:remove("t") +-- Make find more usefull +vim.opt.path:append("**") + +-- Turn off netrw banner +vim.g.netrw_banner = 0 +-- Tree style listing in netrw +vim.g.netrw_liststyle = 3 +-- Make browse set split +-- vim.g.netrw_browse_split = 4 +-- Split to the right, instead of to the left +-- vim.g.netrw_altv = 1 + --[[ VIM User interface --]] diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 6bdaba5..6d9cf9a 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -26,17 +26,6 @@ return require('packer').startup(function(use) end, } - -- nvim-tree - use { - 'kyazdani42/nvim-tree.lua', - requires = { 'kyazdani42/nvim-web-devicons' }, - tag = 'nightly', -- optional, updated every week. (see issue #1193) - config = function() - require("nvim-tree").setup() - map("n", "<F3>", ":NvimTreeToggle<cr>", silentnoremap) - end, - } - -- fzf (Fuzzy finder for various things) use { 'junegunn/fzf.vim', @@ -181,15 +170,13 @@ return require('packer').startup(function(use) end } + use 'tpope/vim-surround' --use { 'PatrickFeiring/tree-sitter-sql' } use 'evanleck/vim-svelte' use 'pangloss/vim-javascript' use 'ledger/vim-ledger' - -- Goyo :) - -- use { - -- 'junegunn/goyo.vim' - -- } + -- use { 'junegunn/goyo.vim' } -- use { 'smithbm2316/centerpad.nvim' } -- Color picker |