Giter Club home page Giter Club logo

awesome-streamerrc's Introduction

awesome-streamerrc

A collection of Twitch streamers .vimrc and other various configurations shared amongst the community.

awesome-streamerrc's People

Contributors

bwsdm avatar erikreinert avatar j0miles avatar melkeydev avatar pr1metine avatar smithbm2316 avatar theprimeagen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

awesome-streamerrc's Issues

vimspector config for ClearLineBreakpoint

Hi, ThePrimeagen
Thanks for your great work : )

It seems that Vimspector has renamed the command for cleaning (clean ---> clear) the breakpoints.

Use vimspector#ClearLineBreakpoint( file_name, line_num ) to remove a breakpoint at a specific file/line
Use vimspector#ClearBreakpoints() to clear all breakpoints

So, I hope the following will help those who meet the same problem for clearing the breakpoints.
nnoremap <leader>dtcb :call vimspector#ClearBreakpoints()<CR>

As a freshman in Vim world, any config suggestion for vimspector#ClearLineBreakpoint( file_name, line_num )?
Thank you very much : )

Question re init.vim

Hi there,

What exactly does this do?

augroup highlight_yank
    autocmd!
    autocmd TextYankPost * silent! lua require'vim.highlight'.on_yank("IncSearch", 50)
augroup END

Have you tried coc-fzf?

Really like your config and your workflow.
I am rather bias because i am the maintainer, but i really think you would love coc-fzf.

It replaces all the CocList with Fzf.
You now use your ctrl-t, muti-select, file preview, floating window etc.

Cheers!
Antoine

Module import not found

Describe the bug
I tried use your vim schema, and i have:
Error executing function ColorMyPencils:
line 10:
E5108: Error executing lua [string "luaeval()"]:1: Vim(colorscheme):E185: Color schema 'gruvbox' not found
Error executing /home/baralho/.config/nvim/plugin/harpoon.vim:
line 1:
E5108: Error executing lua /home/baralho/.config/nvim/lua/theprimeagen/telescope.lua:1: module 'teles
cope.actions' not found:
no field package.preload['telescope.actions']
no file './telescope/actions.lua'
no file '/usr/share/luajit-2.1.0-beta3/telescope/actions.lua'
no file '/usr/local/share/lua/5.1/telescope/actions.lua'
no file '/usr/local/share/lua/5.1/telescope/actions/init.lua'
no file '/usr/share/lua/5.1/telescope/actions.lua'
no file '/usr/share/lua/5.1/telescope/actions/init.lua'
no file './telescope/actions.so'
no file '/usr/local/lib/lua/5.1/telescope/actions.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/telescope/actions.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file './telescope.so'
no file '/usr/local/lib/lua/5.1/telescope.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/telescope.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
Error executing /home/baralho/.config/nvim/plugin/lsp.vim
line 27:
E5108: Error executing lua [string ":lua"]:1: module 'completion' not found:
no field package.preload['completion']
no file './completion.lua'
no file '/usr/share/luajit-2.1.0-beta3/completion.lua'
no file '/usr/local/share/lua/5.1/completion.lua'
no file '/usr/local/share/lua/5.1/completion/init.lua'
no file '/usr/share/lua/5.1/completion.lua'
no file '/usr/share/lua/5.1/completion/init.lua'
no file './completion.so'
no file '/usr/local/lib/lua/5.1/completion.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/completion.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
Error executing /home/baralho/.config/nvim/plugin/telescope.vim:
line 1:
E5108: Error executing lua [string ":lua"]:1: loop or previous error loading module 'theprimeagen'
To Reproduce
Steps to reproduce the behavior:

  1. Cone the entiry project
  2. Execute the install -> some file are corrupt, to solve this i copy the files from project
  3. run nvim test.ts
  4. See error

Expected behavior
Execute correct.

Screenshots
The screenshot is part in Portuguese:
image

Desktop (please complete the following information):

  • Ubuntu 18.04

TheAltF4Stream: Install Default LSPs

Though you can currently run my neovim environment in a Docker container - the image does not provide any lower level language server protocols directly.

It would be good to have some defaults included in the image (node, go, rust, etc) but will need to make sure we don't make the image massive after doing so.

Lua chunk error

Hello guys. I am trying to install Melkey vim config. But when I run the PlugInstall, everything get installed but then I get this error: E5105: Error while calling lua chunk: [string "<VimL compiled string>"]:1: loop or previous error loading module 'completion'

Any idea why is this error pops up?

Keybinding used twice for different things (init.vim)

Was this done on purpose? Same binding used for two different functions.

Line 166: nnoremap <leader>vh :lua vim.lsp.buf.hover()<CR>
Line 210: nnoremap <leader>vh :lua require('telescope.builtin').help_tags()<CR>

Could u please add more details on how to apply the nvim under awesome-streamerrc/ThePrimeagen/

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

I git clone the whole git repo, go to the subfilder of ThePrimeagen, and run install.
But when I open nvim, nothing happens.

Describe the solution you'd like
A clear and concise description of what you want to happen.
It will be much helpful if you can provide more details about how to install the nvim config under the folder ThePrimeagen
thx.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

TheAltF4 Dot files - Windows path

Is your feature request related to a problem? Please describe.
It may be best to add in the readme that you need to change the filepath if on windows

floaterm.vim
fzf.vim
lightline.vim

in init.vim

As windows default path isn't ~/.config

Coc Extensions List

I was just curious if there was a reason you didn't list your coc extensions with g:coc_global_extensions?

Here is mine:

let g:coc_global_extensions=[
\	'coc-clangd',
\	'coc-css',
\	'coc-html',
\	'coc-json',
\	'coc-markdownlint',
\	'coc-phpls',
\	'coc-python',
\	'coc-r-lsp',
\	'coc-sql',
\	'coc-texlab',
\	'coc-tsserver',
\	'coc-vetur',
\	'coc-vimlsp',
\	'coc-xml',
\	'coc-yaml',
\]

If you are not familiar with it, it will automatically install any of the missing extensions when you start neovim.

Errors at starting Vim

After watching your video on YouTube, I copied the init.vim file as my ~/.vimrc and then:

After all that, I could see how the Vim appearance and functionality improved. However, I am always seeing these errors when Vim is open:

image

I googled for some time, but could not find anything conclusive. Do you have an idea what may I be missing?

Notes:

  • Vim 8.2.1185
  • Manjaro 20.0.3

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.