Compare commits
4 Commits
5f3a44163e
...
1ba886e9c9
| Author | SHA1 | Date | |
|---|---|---|---|
| 1ba886e9c9 | |||
| 3c2e72a8be | |||
| 44cacf67be | |||
| fb123ea928 |
5
REMEMBER_TO_GET_SUBMODULES
Normal file
5
REMEMBER_TO_GET_SUBMODULES
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
This repository has sub-modules! Be sure to get them with
|
||||||
|
|
||||||
|
git submodule update --init --recursive
|
||||||
|
|
||||||
|
otherwise things will break!
|
||||||
@@ -2,13 +2,9 @@ return {
|
|||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
build = ':TSUpdate',
|
build = ':TSUpdate',
|
||||||
config = function()
|
config = function()
|
||||||
local configs = require('nvim-treesitter.configs')
|
vim.api.nvim_create_autocmd('FileType', {
|
||||||
|
pattern = { 'c' },
|
||||||
configs.setup {
|
callback = function() vim.treesitter.start() end,
|
||||||
ensure_installed = { 'c', 'cpp', 'lua', 'vimdoc', 'luadoc', 'vim', 'markdown' },
|
})
|
||||||
sync_install = false,
|
|
||||||
highlight = { enable = true },
|
|
||||||
indent = { enable = false }
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ alias ll="ls -alG"
|
|||||||
|
|
||||||
alias vim=nvim
|
alias vim=nvim
|
||||||
alias nj=ninja
|
alias nj=ninja
|
||||||
|
alias ls="ls --color=auto"
|
||||||
|
|
||||||
alias ...="cd ../.."
|
alias ...="cd ../.."
|
||||||
alias ....="cd ../../.."
|
alias ....="cd ../../.."
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
zshrc=~/.zshrc
|
zshrc=~/.zshrc
|
||||||
|
zshenv=~/.zshenv
|
||||||
if [ -z $zshrc ]; then
|
if [ -z $zshrc ]; then
|
||||||
echo "Err: Cannot find dotfile directory."
|
echo "Err: Cannot find dotfile directory."
|
||||||
exit -1
|
exit -1
|
||||||
@@ -48,3 +49,10 @@ source $zsh_dir/commands.zsh
|
|||||||
# KEYBIND initialisation
|
# KEYBIND initialisation
|
||||||
|
|
||||||
source $zsh_dir/keybind.zsh
|
source $zsh_dir/keybind.zsh
|
||||||
|
|
||||||
|
|
||||||
|
# SYSTEM-SPECIFIC initialisation
|
||||||
|
|
||||||
|
if [ -z $zshenv ]; then
|
||||||
|
source $zshenv
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user