-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Semi-regular dotfiles "who knows what I did" commit
- Loading branch information
Showing
40 changed files
with
96 additions
and
72 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
vim.api.nvim_command('set runtimepath^=~/.vim') | ||
vim.api.nvim_command('let &packpath = &runtimepath') | ||
vim.cmd('source ~/.vimrc') | ||
|
||
-- disable netrw at the very start of your init.lua (strongly advised) | ||
vim.g.loaded_netrw = 1 | ||
vim.g.loaded_netrwPlugin = 1 | ||
|
||
-- set termguicolors to enable highlight groups | ||
vim.opt.termguicolors = true | ||
|
||
-- empty setup using defaults | ||
require("nvim-tree").setup() | ||
|
||
-- OR setup with some options | ||
require("nvim-tree").setup({ | ||
sort_by = "case_sensitive", | ||
view = { | ||
adaptive_size = true, | ||
mappings = { | ||
list = { | ||
{ key = "u", action = "dir_up" }, | ||
}, | ||
}, | ||
}, | ||
renderer = { | ||
group_empty = true, | ||
}, | ||
filters = { | ||
dotfiles = true, | ||
}, | ||
}) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/Miles/.config/nvim |
This file was deleted.
Oops, something went wrong.
Submodule ale
added at
8bcbb2
Submodule forest-night
updated
from 1aca18 to 8c1f89
Submodule fzf-lua
added at
b1dea8
Submodule gist-vim
updated
from 4a2103 to 5bfbb5
Submodule indent-blankline.nvim
added at
c4c203
Submodule nvim-lspconfig
added at
dd9e7f
Submodule nvim-tree.lua
added at
e14c28
Submodule nvim-web-devicons
added at
05e107
Submodule seoul256.vim
updated
from 24ed46 to 9faf49
Submodule sonokai
updated
from 862982 to aca74a
Submodule tcomment_vim
updated
from 2de388 to b4930f
Submodule tlib_vim
updated
from a071b6 to d3bdad
Submodule ultisnips
updated
from 66d81f to e99fdf
Submodule vim-bundler
updated
from 40efd1 to ce4690
Submodule vim-deus
updated
from 4f83b9 to 1be965
Submodule vim-dispatch
updated
from fe6a34 to 00e77d
Submodule vim-endwise
updated
from 97180a to 4e5c83
Submodule vim-eunuch
updated
from 4a4bf1 to 291ef1
Submodule vim-fugitive
updated
from 9cba97 to 5b0b13
Submodule vim-haml
updated
from 467d0e to 95a095
Submodule vim-heroku
updated
from d654e7 to fcac7f
Submodule vim-markdown
updated
from baf259 to feadbc
Submodule vim-polyglot
updated
from cc6319 to bc8a81
Submodule vim-projectionist
updated
from 348e07 to 558013
Submodule vim-ragtag
updated
from b8966c to 51b313
Submodule vim-rails
updated
from 2c4223 to a6d2ba
Submodule vim-rake
updated
from 34ece1 to e08049
Submodule vim-rhubarb
updated
from 964d48 to cad60f
Submodule vim-snippets
updated
from 24a9bf to 8c9179
Submodule vim-surround
updated
from f51a26 to 3d188e
Submodule vim-test
updated
from f56194 to c6e5d2
Submodule vim-tmux-navigator
updated
from 6a1e58 to 41ea9d
Submodule vim-unimpaired
updated
from 4afbe5 to 6d44a6
Submodule vimux
updated
from 29d46f to 616fcb
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
snippet class "class" | ||
class ${1} | ||
def initialize(${2}) | ||
${3} | ||
end | ||
end | ||
endsnippet |
This file contains 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
This file contains 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