-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f202b97
commit 42247fd
Showing
6 changed files
with
68 additions
and
95 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 |
---|---|---|
@@ -1,12 +1,18 @@ | ||
# dotfiles | ||
|
||
Before doing anything, make sure you know what you're doing! The settings applied by this repository are highly personal and certainly not suitable for everyone. I recommend creating your own set of dotfiles based on this repository. | ||
Before doing anything, make sure you know what you're doing! The settings | ||
applied by this repository are highly personal and certainly not suitable for | ||
everyone. I recommend creating your own set of dotfiles based on this | ||
repository. | ||
|
||
1. Install [brew](https://brew.sh). | ||
1. SSH setup. | ||
1. Clone this repo to the hidden `.dotfile` directory in your home directory (`git` comes with brew) - `git clone https://github.com/pawelgrzybek/dotfiles.git ~/.dotfile` | ||
1. Clone this repo to the hidden `.dotfile` directory in your home directory | ||
(`git` comes with brew) - | ||
`git clone https://github.com/pawelgrzybek/dotfiles.git ~/.dotfile` | ||
1. Install brew formulas and casks - `source ~/.dotfiles/setup-brew.sh` | ||
1. Download your fav apps from app store- (Keynote, Ivory, Numbers, Pages, Photomator, Reeder) | ||
1. Download your fav apps from app store- (Keynote, Ivory, Numbers, Pages, | ||
Photomator, Reeder) | ||
1. Setup macOS - `source ~/.dotfiles/setup-macos.sh` | ||
1. Setup symlinks - `source ~/.dotfiles/setup-symlinks.sh` | ||
1. Setup pnpm globals - `source ~/.dotfiles/setup-pnpm.sh` |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
require("pawelgrzybek.options") | ||
require("pawelgrzybek.keymaps") | ||
require("pawelgrzybek.autocmds") | ||
require("pawelgrzybek.lazy") |
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,10 @@ | ||
-- Highlight when yanking (copying) text | ||
-- Try it with `yap` in normal mode | ||
-- See `:help vim.highlight.on_yank()` | ||
vim.api.nvim_create_autocmd("TextYankPost", { | ||
desc = "Highlight when yanking (copying) text", | ||
group = vim.api.nvim_create_augroup("kickstart-highlight-yank", { clear = true }), | ||
callback = function() | ||
vim.highlight.on_yank() | ||
end, | ||
}) |
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
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