This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local ls = require("luasnip") | |
| local ai = require("luasnip.nodes.absolute_indexer") | |
| local events = require("luasnip.util.events") | |
| local extras = require("luasnip.extras") | |
| local fmt = require("luasnip.extras.fmt").fmt | |
| local postfix = require("luasnip.extras.postfix").postfix | |
| local types = require("luasnip.util.types") | |
| ls.config.set_config({ | |
| -- This tells LuaSnip to remember the last snippet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aesma Daeva | |
| After Forever | |
| Almôra | |
| Amaranthe | |
| Amberian Dawn | |
| Ancient Bards | |
| Android Lust | |
| Angelspit | |
| Angtoria | |
| Arch Enemy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Delete remote branches which have been merged into master, excluding the | |
| # current branch, then remove local branches pointing to remote branches which | |
| # have been deleted. | |
| # Test | |
| git branch -r --merged master | grep -v -e $(git symbolic-ref --short HEAD) -e master | sed 's/origin\///' | |
| # Delete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Mappings to make the global register less annoying (requires xsel) | |
| if has("clipboard") | |
| map <Leader>p :set paste<CR>"+]p<Esc>:set nopaste<CR> | |
| map <Leader>P :set paste<CR>"+]P<Esc>:set nopaste<CR> | |
| map <Leader>y "+y | |
| map <Leader>Y "+Y | |
| else | |
| map <Leader>p :set paste<CR>:r !xsel -ob<Esc>:set nopaste<CR> | |
| map <Leader>P :set paste<CR>:-1r !xsel -ob<Esc>:set nopaste<CR> | |
| map <Leader>y :w !xsel -ib<CR><CR> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "InputClass" | |
| Identifier "touchpad catchall" | |
| Driver "synaptics" | |
| MatchIsTouchpad "on" | |
| Option "AccelFactor" "0" | |
| Option "AccelerationDenominator" "1" | |
| Option "AccelerationNumerator" "1" | |
| Option "AccelerationProfile" "-1" | |
| Option "AccelerationScheme" "none" | |
| Option "AccelerationThreshold" "0" |