I have a Corpus in R using the tm package. I am applying the removeWords function to remove stopwords
tm
removeWords
tm_map(abs, removeWords, stop
stopwords just provides you with a vector of words, just combine your own ones to this.
stopwords
c
tm_map(abs, removeWords, c(stopwords("english"),"my","custom","words"))