mirror of https://github.com/fredrikekre/.dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
998 B
29 lines
998 B
-- Plugins that don't require any advanced config |
|
return { |
|
-- https://github.com/christoomey/vim-tmux-navigator |
|
{"christoomey/vim-tmux-navigator"}, |
|
-- https://github.com/JuliaEditorSupport/julia-vim |
|
{"JuliaEditorSupport/julia-vim"}, |
|
-- https://github.com/tpope/vim-commentary |
|
{"tpope/vim-commentary"}, |
|
-- https://github.com/tpope/vim-fugitive |
|
{"tpope/vim-fugitive"}, |
|
-- https://github.com/tpope/vim-rhubarb |
|
{"tpope/vim-rhubarb"}, |
|
-- https://github.com/nvim-lua/plenary.nvim |
|
{"nvim-lua/plenary.nvim"}, |
|
-- https://github.com/andythigpen/nvim-coverage |
|
{"andythigpen/nvim-coverage", opts = {lang = {julia = {directories = "src,ext,juliac"}}}}, |
|
{ |
|
"folke/todo-comments.nvim", |
|
dependencies = {"nvim-lua/plenary.nvim"}, |
|
opts = { |
|
signs = false, |
|
highlight = { |
|
keyword = "bg", |
|
after = "fg", |
|
multiline_pattern = "^ .", |
|
}, |
|
}, |
|
}, |
|
}
|
|
|